Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate Deployment Manager tool to Open Source #6692

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions scripts/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ if(UNIX)
COMPONENT install_dependencies)
endif()

# install DeploymentManager
ie_cpack_add_component(deployment_manager REQUIRED)
install(DIRECTORY deployment_manager/
DESTINATION deployment_tools/tools/deployment_manager
COMPONENT deployment_manager)

# install files for demo

ie_cpack_add_component(demo_scripts DEPENDS core)
Expand Down
106 changes: 106 additions & 0 deletions scripts/deployment_manager/configs/darwin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"version": "0.2",
"components": {
"setupvars": {
"mandatory" : "yes",
"files": [
"bin"
]
},
"openvino_license": {
"mandatory" : "yes",
"files": [
"licensing"
]
},
"ie_core": {
"group": ["ie"],
"files": [
"deployment_tools/inference_engine/version.txt",
"deployment_tools/inference_engine/lib/intel64/libinference_engine.dylib",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_lp_transformations.dylib",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_transformations.dylib",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_preproc.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_ir_reader.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_onnx_reader.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_c_api.dylib",
"deployment_tools/inference_engine/lib/intel64/libAutoPlugin.so",
artanokhov marked this conversation as resolved.
Show resolved Hide resolved
"deployment_tools/inference_engine/lib/intel64/plugins.xml",
"deployment_tools/inference_engine/external/tbb",
"deployment_tools/ngraph/lib"
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"deployment_tools/inference_engine/lib/intel64/libMKLDNNPlugin.so"
]
},
"vpu": {
"ui_name": "Inference Engine Runtime for Intel(R) Movidius(tm) VPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"deployment_tools/inference_engine/lib/intel64/libmyriadPlugin.so",
"deployment_tools/inference_engine/lib/intel64/myriad_compile",
"deployment_tools/inference_engine/lib/intel64/myriad_perfcheck",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_legacy.dylib",
"deployment_tools/inference_engine/lib/intel64/usb-ma2x8x.mvcmd",
"deployment_tools/inference_engine/lib/intel64/pcie-ma2x8x.mvcmd"
]
},
"opencv": {
"ui_name": "OpenCV",
"group": ["opencv"],
"dependencies" : [],
"files": [
"opencv/version.txt",
"opencv/setupvars.sh",
"opencv/lib",
"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"
]
artanokhov marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
145 changes: 145 additions & 0 deletions scripts/deployment_manager/configs/linux.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
{
"version": "0.2",
"components": {
"setupvars": {
"mandatory" : "yes",
"files": [
"bin"
]
},
"openvino_dependencies": {
"mandatory" : "yes",
"files": [
"install_dependencies/install_openvino_dependencies.sh"
]
},
"openvino_license": {
"mandatory" : "yes",
"files": [
"licensing"
]
},
"ie_core": {
"group": ["ie"],
"files": [
"deployment_tools/inference_engine/version.txt",
"deployment_tools/inference_engine/lib/intel64/libinference_engine.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_lp_transformations.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_transformations.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_preproc.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_ir_reader.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_onnx_reader.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_c_api.so",
"deployment_tools/inference_engine/lib/intel64/libAutoPlugin.so",
"deployment_tools/inference_engine/lib/intel64/plugins.xml",
"deployment_tools/inference_engine/external/tbb",
"deployment_tools/ngraph/lib"
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"deployment_tools/inference_engine/lib/intel64/libMKLDNNPlugin.so"
]
},
"gpu": {
"ui_name": "Inference Engine Runtime for Intel(R) Processor Graphics",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
"deployment_tools/inference_engine/lib/intel64/cache.json",
"deployment_tools/inference_engine/lib/intel64/libclDNNPlugin.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": [
"deployment_tools/inference_engine/external/97-myriad-usbboot.rules",
"deployment_tools/inference_engine/lib/intel64/usb-ma2x8x.mvcmd",
"deployment_tools/inference_engine/lib/intel64/pcie-ma2x8x.mvcmd",
"deployment_tools/inference_engine/lib/intel64/libmyriadPlugin.so",
"deployment_tools/inference_engine/lib/intel64/myriad_compile",
"deployment_tools/inference_engine/lib/intel64/myriad_perfcheck",
"deployment_tools/inference_engine/lib/intel64/vpu_custom_kernels",
"deployment_tools/inference_engine/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": [
"deployment_tools/inference_engine/external/gna",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_legacy.so",
"deployment_tools/inference_engine/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": [
"deployment_tools/inference_engine/lib/intel64/libHDDLPlugin.so",
"deployment_tools/inference_engine/lib/intel64/libinference_engine_legacy.so",
"deployment_tools/inference_engine/external/hddl"
]
},
"opencv": {
"ui_name": "OpenCV",
"group": ["opencv"],
"dependencies" : [],
"files": [
"opencv/version.txt",
"opencv/setupvars.sh",
"opencv/lib",
"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"
]
}
}
}
Loading