Files
openvino/tools/deployment_manager/configs/windows.json
Ilya Lavrenov c4eeecfec5 Remove myriad plugin (#15131)
* Removed Intel MYRIAD plugin

* Removed Intel MYIAD from CI files

* Removed Intel MYRIAD from cmake folder

* Removed MYRIAD, HDDL from samples

* Removed MYRIAD, HDDL from scripts folder

* Removed MYRIAD from bindings folder (C and Python API)

* Removed MYRIAD tests

* Removed MYRIAD from tests folder

* Removed MYRIAD from tools folder

* Removed HDDL (VAD), MYRIAD (NSC2) from documentation

* Fixed build for AUTO unit tests

* Fixed clang code style

* Fixed comments and issues

* removed MYRIAD from AUTO tests

* Disabled MULTI tests in CI

* Update docs/OV_Runtime_UG/auto_device_selection.md

Co-authored-by: Yuan Xu <yuan1.xu@intel.com>

* Update docs/get_started/get_started_demos.md

Co-authored-by: Yuan Xu <yuan1.xu@intel.com>

* Update docs/OV_Runtime_UG/deployment/local-distribution.md

Co-authored-by: Yuan Xu <yuan1.xu@intel.com>

Co-authored-by: Yuan Xu <yuan1.xu@intel.com>
2023-01-18 15:19:44 +04:00

93 lines
2.6 KiB
JSON

{
"version": "0.2",
"components": {
"setupvars": {
"mandatory" : "yes",
"files": [
"setupvars.bat"
]
},
"openvino_license": {
"mandatory" : "yes",
"files": [
"docs/licensing"
]
},
"ie_core": {
"group": ["ie"],
"files": [
"runtime/bin/intel64/Release/openvino.dll",
"runtime/bin/intel64/Release/openvino_gapi_preproc.dll",
"runtime/bin/intel64/Release/openvino_c.dll",
"runtime/bin/intel64/Release/openvino_hetero_plugin.dll",
"runtime/bin/intel64/Release/openvino_auto_plugin.dll",
"runtime/bin/intel64/Release/openvino_auto_batch_plugin.dll",
"runtime/bin/intel64/Release/openvino_ir_frontend.dll",
"runtime/bin/intel64/Release/openvino_onnx_frontend.dll",
"runtime/bin/intel64/Release/openvino_paddle_frontend.dll",
"runtime/bin/intel64/Release/openvino_tensorflow_frontend.dll",
"runtime/bin/intel64/Release/plugins.xml",
"runtime/3rdparty/tbb"
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/bin/intel64/Release/openvino_intel_cpu_plugin.dll"
]
},
"gpu": {
"ui_name": "Inference Engine Runtime for Intel(R) Processor Graphics",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/bin/intel64/Release/cache.json",
"runtime/bin/intel64/Release/openvino_intel_gpu_plugin.dll"
]
},
"gna": {
"ui_name": "Inference Engine Runtime for Intel(R) Gaussian Neural Accelerator",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/bin/intel64/Release/gna.dll",
"runtime/bin/intel64/Release/openvino_intel_gna_plugin.dll"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python 3.7",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python 3.8",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python 3.9",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.9"
]
},
"python3.10": {
"ui_name": "OpenVINO Python API for Python 3.10",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.10"
]
}
}
}