Files
openvino/tools/deployment_manager/configs/linux.json
Artyom Anokhov 6908023a42 config.py: Updated routing due to new place of DM tool. (#8230)
config/*.json: Updated list of files due to current layout
2021-10-28 10:50:09 +03:00

148 lines
4.3 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": [
"licensing"
]
},
"ie_core": {
"group": ["ie"],
"files": [
"runtime/lib/intel64/libinference_engine.so",
"runtime/lib/intel64/libinference_engine_transformations.so",
"runtime/lib/intel64/libinference_engine_preproc.so",
"runtime/lib/intel64/libinference_engine_c_api.so",
"runtime/lib/intel64/libHeteroPlugin.so",
"runtime/lib/intel64/libMultiDevicePlugin.so",
"runtime/lib/intel64/libngraph.so",
"runtime/lib/intel64/libfrontend_manager.so",
"runtime/lib/intel64/libir_ngraph_frontend.so",
"runtime/lib/intel64/libonnx_ngraph_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/libinference_engine_lp_transformations.so",
"runtime/lib/intel64/libMKLDNNPlugin.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/libclDNNPlugin.so",
"runtime/lib/intel64/libinference_engine_lp_transformations.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/libmyriadPlugin.so",
"runtime/lib/intel64/vpu_custom_kernels",
"runtime/lib/intel64/libinference_engine_legacy.so",
"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/libinference_engine_legacy.so",
"runtime/lib/intel64/libGNAPlugin.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/libHDDLPlugin.so",
"runtime/lib/intel64/libinference_engine_legacy.so",
"runtime/3rdparty/hddl"
]
},
"opencv": {
"ui_name": "OpenCV",
"group": ["opencv"],
"dependencies" : [],
"files": [
"extras/opencv/version.txt",
"extras/opencv/setupvars.sh",
"extras/opencv/lib",
"extras/opencv/bin"
]
},
"python_common": {
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3",
"python/requirements.txt"
]
},
"python3.6": {
"ui_name": "OpenVINO Python API for Python3.6",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"files": [
"python/python3.6"
]
},
"python3.7": {
"ui_name": "OpenVINO Python API for Python3.7",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"files": [
"python/python3.7"
]
},
"python3.8": {
"ui_name": "OpenVINO Python API for Python3.8",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"files": [
"python/python3.8"
]
},
"python3.9": {
"ui_name": "OpenVINO Python API for Python3.9",
"group": ["python"],
"dependencies" : ["ie_core", "python_common"],
"files": [
"python/python3.9"
]
}
}
}