DOCS post-release adjustments (#17874)
This commit is contained in:
28
docs/_static/css/homepage_style.css
vendored
28
docs/_static/css/homepage_style.css
vendored
@@ -14,39 +14,41 @@ h1 {
|
||||
margin-bottom: 90px!important;
|
||||
}
|
||||
#ov-homepage-banner {
|
||||
/*border: 1px solid var(--sd-color-primary);*/
|
||||
padding: 1rem;
|
||||
padding: 2rem;
|
||||
background-color: #76CEFF;
|
||||
background-image: linear-gradient(346deg, #728EFA 0%, #76CEFF 50%, #BBE8BD 100%);
|
||||
border-bottom: 5px solid #0068b5;
|
||||
}
|
||||
#ov-homepage-banner p:first-of-type {
|
||||
margin-top: 0;
|
||||
margin-bottom: 3rem;
|
||||
margin-bottom: 1rem;
|
||||
box-sizing: border-box;
|
||||
color: rgb(38, 38, 38);
|
||||
display: block;
|
||||
font-family: sans-serif;
|
||||
font-size: 36px;
|
||||
font-weight: 400;
|
||||
line-height: 41.4px;
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
line-height: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
#ov-homepage-banner .line-block {
|
||||
text-align: center;
|
||||
padding-left: 30%;
|
||||
color: #4000b7;;
|
||||
text-align: left;
|
||||
color: #000000;
|
||||
}
|
||||
.ov-homepage-banner-btn {
|
||||
transition: 0.7s;
|
||||
background-color: var(--sd-color-primary);
|
||||
margin-left: 2rem;
|
||||
color: white!important;
|
||||
font-weight: bold;
|
||||
background-color: #0068b5;
|
||||
color: #ffffff !important;
|
||||
}
|
||||
.ov-homepage-banner-btn:hover {
|
||||
background-color: white!important;
|
||||
color: var(--sd-color-primary)!important;
|
||||
}
|
||||
#ov-homepage-banner > p:nth-child(3) {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.openvino-diagram {
|
||||
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
.ov-homepage-higlight-grid {
|
||||
|
||||
4
docs/_static/js/graphs.js
vendored
4
docs/_static/js/graphs.js
vendored
@@ -1,8 +1,8 @@
|
||||
// =================== GENERAL OUTPUT CONFIG =========================
|
||||
|
||||
const chartDisclaimers = {
|
||||
Value: 'Value: Performance/(No_of_sockets * Price_of_CPU_dGPU), where prices are in USD as of December 2022.',
|
||||
Efficiency: 'Efficiency: Performance/(No_of_sockets * TDP_of_CPU_dGPU), where total power dissipation (TDP) is in Watt as of December 2022.'
|
||||
Value: 'Value: Performance/(No_of_sockets * Price_of_CPU_dGPU), where prices are in USD as of May 2023.',
|
||||
Efficiency: 'Efficiency: Performance/(No_of_sockets * TDP_of_CPU_dGPU), where total power dissipation (TDP) is in Watt as of May 2023.'
|
||||
}
|
||||
|
||||
const OVdefaultSelections = {
|
||||
|
||||
@@ -24,7 +24,7 @@ sys.path.insert(0, os.path.abspath('doxyrest-sphinx'))
|
||||
# -- Project information -----------------------------------------------------
|
||||
|
||||
project = 'OpenVINO™'
|
||||
copyright = '2022, Intel®'
|
||||
copyright = '2023, Intel®'
|
||||
author = 'Intel®'
|
||||
|
||||
language = 'en'
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
.. container::
|
||||
:name: ov-homepage-banner
|
||||
|
||||
@@ -27,9 +26,7 @@
|
||||
:color: primary
|
||||
:outline:
|
||||
|
||||
GET STARTED
|
||||
|
||||
|
||||
Get started
|
||||
|
||||
.. rst-class:: openvino-diagram
|
||||
|
||||
@@ -39,10 +36,6 @@
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.. grid:: 2 2 3 3
|
||||
:class-container: ov-homepage-higlight-grid
|
||||
|
||||
|
||||
@@ -52,6 +52,27 @@ Installing OpenVINO Runtime with Anaconda Package Manager
|
||||
|
||||
Congratulations! You have finished installing OpenVINO Runtime.
|
||||
|
||||
Compiling with OpenVINO Runtime from Conda-Forge on Linux
|
||||
###########################################################
|
||||
|
||||
When linking OpenVINO libraries from Conda on Linux, ensure that you have the necessary Conda compilers installed.
|
||||
To do so, run the following command in your Conda environment:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
conda install cmake c-compiler cxx-compiler make
|
||||
|
||||
It is crucial to reactivate your Conda environment after installing the compilers.
|
||||
This step ensures that all the environment variables are set correctly for successful linkage.
|
||||
|
||||
To reactivate your Conda environment, execute the following command:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
conda activate <your_environment_name>
|
||||
|
||||
Replace <your_environment_name> with the name of your Conda environment.
|
||||
Once you have reactivated your Conda environment, make sure that all the necessary environment variables are properly set and proceed with linking the OpenVINO libraries.
|
||||
|
||||
Uninstalling OpenVINO™ Runtime
|
||||
###########################################################
|
||||
|
||||
@@ -49,19 +49,20 @@ See the `Release Notes <https://software.intel.com/en-us/articles/OpenVINO-RelNo
|
||||
|
||||
* GCC 8.3.1
|
||||
Use the following instructions to install it:
|
||||
|
||||
Install GCC 8.3.1 via devtoolset-8
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
sudo yum update -y && sudo yum install -y centos-release-scl epel-release
|
||||
sudo yum install -y devtoolset-8
|
||||
.. code-block:: sh
|
||||
|
||||
sudo yum update -y && sudo yum install -y centos-release-scl epel-release
|
||||
sudo yum install -y devtoolset-8
|
||||
|
||||
Enable devtoolset-8 and check current gcc version
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
source /opt/rh/devtoolset-8/enable
|
||||
gcc -v
|
||||
.. code-block:: sh
|
||||
|
||||
source /opt/rh/devtoolset-8/enable
|
||||
gcc -v
|
||||
|
||||
|
||||
|
||||
@@ -90,52 +91,74 @@ Step 1: Download and Install the OpenVINO Core Components
|
||||
|
||||
4. Download the `OpenVINO Runtime archive file for your system <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/>`_, extract the files, rename the extracted folder and move it to the desired path:
|
||||
|
||||
.. tab:: Ubuntu 22.04
|
||||
|
||||
.. tab:: x86_64
|
||||
|
||||
.. tab:: Ubuntu 22.04
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu22_2023.0.0.10926. b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: Ubuntu 20.04
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu20_2023.0.0.10926. b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu20_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: Ubuntu 18.04
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu18_2023.0.0.10926. b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu18_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: RHEL 8
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64. tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: CentOS 7
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_centos7_2023.0.0.10926. b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_centos7_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: ARM 64-bit
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu22_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: Ubuntu 20.04
|
||||
|
||||
cd ~/Downloads/
|
||||
sudo wget https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_arm64. tgz -O openvino_2023.0.0.tgz
|
||||
sudo tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_arm64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: ARM 32-bit
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu20_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu20_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: Ubuntu 18.04
|
||||
|
||||
.. code-block:: sh
|
||||
cd ~/Downloads/
|
||||
sudo wget https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf. tgz -O openvino_2023.0.0.tgz
|
||||
sudo tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf /opt/intel/openvino_2023.0.0
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_ubuntu18_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_ubuntu18_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: RHEL 8
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_rhel8_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
.. tab:: CentOS 7
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
curl -L https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_centos7_2023.0.0.10926.b4452d56304_x86_64.tgz --output openvino_2023.0.0.tgz
|
||||
tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_centos7_2023.0.0.10926.b4452d56304_x86_64 /opt/intel/openvino_2023.0.0
|
||||
|
||||
5. Install required system dependencies on Linux. To do this, OpenVINO provides a script in the extracted installation directory. Run the following command:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
cd /opt/intel/openvino_2023.0.0
|
||||
sudo -E ./install_dependencies/install_openvino_dependencies.sh
|
||||
.. code-block:: sh
|
||||
|
||||
cd /opt/intel/openvino_2023.0.0
|
||||
sudo -E ./install_dependencies/install_openvino_dependencies.sh
|
||||
|
||||
6. For simplicity, it is useful to create a symbolic link as below:
|
||||
|
||||
|
||||
@@ -8,13 +8,17 @@
|
||||
|
||||
From Archive <openvino_docs_install_guides_installing_openvino_from_archive_macos>
|
||||
From PyPI <openvino_docs_install_guides_installing_openvino_pip>
|
||||
Using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>
|
||||
Using Homebrew <openvino_docs_install_guides_installing_openvino_brew>
|
||||
|
||||
|
||||
If you want to install OpenVINO™ Runtime on macOS, there are a few ways to accomplish this. We prepared following options for you:
|
||||
|
||||
* :doc:`Install OpenVINO Runtime from an Archive File <openvino_docs_install_guides_installing_openvino_from_archive_macos>`
|
||||
* :doc:`Install OpenVINO Runtime via Homebrew <openvino_docs_install_guides_installing_openvino_brew>`
|
||||
* :doc:`Install OpenVINO from PyPI <openvino_docs_install_guides_installing_openvino_pip>`
|
||||
* :doc:`Install OpenVINO Runtime using Conda Forge <openvino_docs_install_guides_installing_openvino_conda>`
|
||||
* :doc:`Install OpenVINO Runtime via Homebrew <openvino_docs_install_guides_installing_openvino_brew>`
|
||||
|
||||
|
||||
For a full selection of distribution channels,
|
||||
see the `OpenVINO Installation Selector Tool <https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html>`__
|
||||
|
||||
@@ -62,7 +62,6 @@ The following methods are available to install OpenVINO Runtime:
|
||||
* Linux: You can install OpenVINO Runtime using APT, YUM, archive files or Docker. See :doc:`Install OpenVINO on Linux <openvino_docs_install_guides_installing_openvino_linux_header>`.
|
||||
* Windows: You can install OpenVINO Runtime using archive files or Docker. See :doc:`Install OpenVINO on Windows <openvino_docs_install_guides_installing_openvino_windows_header>`.
|
||||
* macOS: You can install OpenVINO Runtime using archive files or Docker. See :doc:`Install OpenVINO on macOS <openvino_docs_install_guides_installing_openvino_macos_header>`.
|
||||
* :doc:`Raspbian OS <openvino_docs_install_guides_installing_openvino_raspbian>`
|
||||
|
||||
Option 3. Build OpenVINO from source
|
||||
++++++++++++++++++++++++++++++++++++
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Install OpenVINO™ Runtime for Raspbian OS {#openvino_docs_install_guides_installing_openvino_raspbian}
|
||||
# Install OpenVINO™ Runtime for Raspbian OS
|
||||
|
||||
@sphinxdirective
|
||||
|
||||
@@ -27,8 +27,9 @@ Development and Target Systems
|
||||
Step 1: Download and Install OpenVINO Runtime
|
||||
#############################################
|
||||
|
||||
#. Open the Terminal or your preferred console application.
|
||||
#. Create an installation folder for OpenVINO. If the folder already exists, skip this step.
|
||||
|
||||
1. Open the Terminal or your preferred console application.
|
||||
2. Create an installation folder for OpenVINO. If the folder already exists, skip this step.
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
@@ -38,7 +39,7 @@ Step 1: Download and Install OpenVINO Runtime
|
||||
|
||||
The ``/opt/intel`` path is the recommended folder path for administrators or root users. If you prefer to install OpenVINO in regular userspace, the recommended path is ``/home/<USER>/intel``. You may use a different path if desired.
|
||||
|
||||
#. Go to your ``~/Downloads`` directory and download OpenVINO Runtime archive file for Debian from `OpenVINO package repository <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/>`_.
|
||||
3. Go to your ``~/Downloads`` directory and download OpenVINO Runtime archive file for Debian from `OpenVINO package repository <https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/>`_.
|
||||
|
||||
.. tab:: ARM 64-bit
|
||||
|
||||
@@ -54,7 +55,7 @@ Step 1: Download and Install OpenVINO Runtime
|
||||
cd ~/Downloads/
|
||||
sudo wget https://storage.openvinotoolkit.org/repositories/openvino/packages/2023.0/linux/l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf.tgz -O openvino_2023.0.0.tgz
|
||||
|
||||
#. Extract the archive file and move it to the installation folder:
|
||||
4. Extract the archive file and move it to the installation folder:
|
||||
|
||||
.. tab:: ARM 64-bit
|
||||
|
||||
@@ -70,13 +71,14 @@ Step 1: Download and Install OpenVINO Runtime
|
||||
sudo tar -xf openvino_2023.0.0.tgz
|
||||
sudo mv l_openvino_toolkit_debian9_2023.0.0.10926.b4452d56304_armhf /opt/intel/openvino_2023.0.0
|
||||
|
||||
#. Install required system dependencies on Linux. To do this, OpenVINO provides a script in the extracted installation directory. Run the following command:
|
||||
|
||||
5. Install required system dependencies on Linux. To do this, OpenVINO provides a script in the extracted installation directory. Run the following command:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
sudo -E ./install_dependencies/install_openvino_dependencies.sh
|
||||
|
||||
#. For simplicity, it is useful to create a symbolic link as below:
|
||||
6. For simplicity, it is useful to create a symbolic link as below:
|
||||
|
||||
.. code-block:: sh
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
Linux <openvino_docs_install_guides_installing_openvino_linux_header>
|
||||
Windows <openvino_docs_install_guides_installing_openvino_windows_header>
|
||||
macOS <openvino_docs_install_guides_installing_openvino_macos_header>
|
||||
Raspbian OS <openvino_docs_install_guides_installing_openvino_raspbian>
|
||||
|
||||
|
||||
You can choose how to install OpenVINO™ Runtime according to your operating system:
|
||||
@@ -17,7 +16,6 @@ You can choose how to install OpenVINO™ Runtime according to your operating sy
|
||||
* :doc:`Install OpenVINO Runtime on Linux <openvino_docs_install_guides_installing_openvino_linux_header>`
|
||||
* :doc:`Install OpenVINO Runtime on Windows <openvino_docs_install_guides_installing_openvino_windows_header>`
|
||||
* :doc:`Install OpenVINO Runtime on macOS <openvino_docs_install_guides_installing_openvino_macos_header>`
|
||||
* :doc:`Install OpenVINO Runtime on Raspbian OS <openvino_docs_install_guides_installing_openvino_raspbian>`
|
||||
|
||||
Enjoy your journey with OpenVINO.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user