deprecate deployment manager (#21089)
This commit is contained in:
parent
c84cdeb264
commit
4e702d96e1
|
|
@ -8,6 +8,7 @@
|
|||
|
||||
OpenVINO Development Tools package <openvino_docs_install_guides_install_dev_tools>
|
||||
Model Optimizer / Conversion API <openvino_docs_OV_Converter_UG_prepare_model_convert_model_MO_OVC_transition>
|
||||
Deploy Application with Deployment Manager <openvino_docs_install_guides_deployment_manager_tool>
|
||||
OpenVINO API 2.0 transition <openvino_2_0_transition_guide>
|
||||
Open Model ZOO <model_zoo>
|
||||
Apache MXNet, Caffe, and Kaldi <mxnet_caffe_kaldi>
|
||||
|
|
@ -49,6 +50,14 @@ offering.
|
|||
| :doc:`See how to use OVC <openvino_docs_model_processing_introduction>`
|
||||
| :doc:`See how to transition from the legacy solution <openvino_docs_OV_Converter_UG_prepare_model_convert_model_MO_OVC_transition>`
|
||||
|
||||
| **OpenVINO Deployment Manager**
|
||||
| *New solution:* the tool is no longer needed
|
||||
| *Old solution:* discontinuation planned for OpenVINO 2024.0
|
||||
|
|
||||
| It is recommended to explore alternative deployment solutions available in OpenVINO.
|
||||
| :doc:`See how to deploy locally <openvino_deployment_guide>`
|
||||
|
||||
|
||||
|
||||
| **Open Model ZOO**
|
||||
| *New solution:* users are encouraged to use public model repositories
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@
|
|||
:maxdepth: 1
|
||||
:hidden:
|
||||
|
||||
Deploy Application with Deployment Manager <openvino_docs_install_guides_deployment_manager_tool>
|
||||
Local Distribution Libraries <openvino_docs_deploy_local_distribution>
|
||||
Optimize Binaries Size <opevino_conditional_compilation_deploying_guide>
|
||||
|
||||
|
|
@ -31,8 +30,7 @@ Local Deployment Options
|
|||
- Furthermore, to customize your OpenVINO Docker image, use the `Docker CI Framework <https://github.com/openvinotoolkit/docker_ci>`__ to generate a Dockerfile and build the image.
|
||||
- Grab a necessary functionality of OpenVINO together with your application, also called "local distribution":
|
||||
|
||||
- using :doc:`OpenVINO Deployment Manager <openvino_docs_install_guides_deployment_manager_tool>` - providing a convenient way for creating a distribution package;
|
||||
- using the advanced :doc:`local distribution <openvino_docs_deploy_local_distribution>` approach;
|
||||
- using the :doc:`local distribution <openvino_docs_deploy_local_distribution>` approach;
|
||||
- using `a static version of OpenVINO Runtime linked to the final app <https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/static_libaries.md>`__.
|
||||
|
||||
The table below shows which distribution type can be used for what target operating system:
|
||||
|
|
@ -50,8 +48,6 @@ The table below shows which distribution type can be used for what target operat
|
|||
- Ubuntu 22.04 long-term support (LTS), 64-bit; Ubuntu 20.04 long-term support (LTS), 64-bit; Red Hat Enterprise Linux 8, 64-bit
|
||||
* - PyPI (PIP package manager)
|
||||
- See https://pypi.org/project/openvino
|
||||
* - :doc:`OpenVINO Deployment Manager <openvino_docs_install_guides_deployment_manager_tool>`
|
||||
- All operating systems
|
||||
* - :doc:`Libraries for Local Distribution <openvino_docs_deploy_local_distribution>`
|
||||
- All operating systems
|
||||
* - `Build OpenVINO statically and link to the final app <https://github.com/openvinotoolkit/openvino/blob/master/docs/dev/static_libaries.md>`__
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@
|
|||
package for a target device.
|
||||
|
||||
|
||||
.. warning::
|
||||
|
||||
Note that OpenVINO Deployment Manager is deprecated and will be removed in OpenVINO 2024.0.
|
||||
|
||||
The OpenVINO™ Deployment Manager is a Python command-line tool that creates a deployment package by assembling the model, OpenVINO IR files, your application, and associated dependencies into a runtime package for your target device. This tool is delivered within the Intel® Distribution of OpenVINO™ toolkit for Linux, Windows and macOS release packages. It is available in the ``<INSTALL_DIR>/tools/deployment_manager`` directory after installation.
|
||||
|
||||
This article provides instructions on how to create a package with Deployment Manager and then deploy the package to your target systems.
|
||||
|
|
|
|||
Loading…
Reference in New Issue