Files
openvino/tools/deployment_manager/configs/linux.json
Ilya Lavrenov f2f281e60b Renamed ov_runtime => openvino, ov_ => openvino_ prefix (#10069)
* Renamed ov_runtime => openvino, ov_ => openvino_ prefix

* Coverage fix

* More fixes

* Fixed MO tests with custom FE
2022-02-03 20:03:41 +03:00

123 lines
3.5 KiB
JSON

{
"version": "0.2",
"components": {
"setupvars": {
"mandatory" : "yes",
"files": [
"setupvars.sh"
]
},
"openvino_dependencies": {
"mandatory" : "yes",
"files": [
"install_dependencies/install_openvino_dependencies.sh"
]
},
"openvino_license": {
"mandatory" : "yes",
"files": [
"docs/licensing"
]
},
"ie_core": {
"group": ["ie"],
"files": [
"runtime/lib/intel64/libopenvino.so",
"runtime/lib/intel64/libopenvino_gapi_preproc.so",
"runtime/lib/intel64/libopenvino_c.so",
"runtime/lib/intel64/libopenvino_hetero_plugin.so",
"runtime/lib/intel64/libopenvino_auto_plugin.so",
"runtime/lib/intel64/libopenvino_auto_batch_plugin.so",
"runtime/lib/intel64/libopenvino_ir_frontend.so",
"runtime/lib/intel64/libopenvino_onnx_frontend.so",
"runtime/lib/intel64/libopenvino_paddle_frontend.so",
"runtime/lib/intel64/plugins.xml",
"runtime/3rdparty/tbb"
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/lib/intel64/libopenvino_intel_cpu_plugin.so"
]
},
"gpu": {
"ui_name": "Inference Engine Runtime for Intel(R) Processor Graphics",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/lib/intel64/cache.json",
"runtime/lib/intel64/libopenvino_intel_gpu_plugin.so",
"install_dependencies/install_NEO_OCL_driver.sh"
]
},
"vpu": {
"ui_name": "Inference Engine Runtime for Intel(R) Movidius(tm) VPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/3rdparty/97-myriad-usbboot.rules",
"runtime/lib/intel64/usb-ma2x8x.mvcmd",
"runtime/lib/intel64/pcie-ma2x8x.mvcmd",
"runtime/lib/intel64/libopenvino_intel_myriad_plugin.so",
"runtime/lib/intel64/vpu_custom_kernels",
"install_dependencies/install_NCS_udev_rules.sh"
]
},
"gna": {
"ui_name": "Inference Engine Runtime for Intel(R) Gaussian Neural Accelerator",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/lib/intel64/libgna.so",
"runtime/lib/intel64/libgna.so.2",
"runtime/lib/intel64/libgna.so.3.0.0.1377",
"runtime/lib/intel64/libopenvino_intel_gna_plugin.so"
]
},
"hddl": {
"ui_name": "Inference Engine Runtime for Intel(R) Vision Accelerator Design with\n\t Intel(R) Movidius(tm) VPUs",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"runtime/lib/intel64/libopenvino_intel_hddl_plugin.so",
"runtime/3rdparty/hddl"
]
},
"python3.6": {
"ui_name": "OpenVINO Python API for Python3.6",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.6"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python3.7",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python3.8",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python3.9",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.9"
]
}
}
}