* docs to sphinx * Update GPU.md * Update CPU.md * Update AUTO.md * Update performance_int8_vs_fp32.md * update * update md * updates * disable doc ci * disable ci * fix index.rst Co-authored-by: Andrey Zaytsev <andrey.zaytsev@intel.com>
750 B
750 B
Build Documentation Using CMake
- Clone submodules:
cd openvino
git submodule update --init --recursive
- Install build dependencies using the
install_build_dependencies.shscript in the project root folder.
chmod +x install_build_dependencies.sh
./install_build_dependencies.sh
-
Install doxyrest and put the
binfolder in your path -
Install python dependencies:
python -m pip install -r docs/requirements.txt
-
Install the sphinx theme
-
Create a build folder:
mkdir build && cd build
- Build documentation using these commands:
cmake .. -DENABLE_DOCS=ON -DENABLE_DOCKER=ON
cmake --build . --target sphinx_docs