Skip to content

Commit

Permalink
Added python 3.11 for deployment tool (openvinotoolkit#17627)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov authored May 19, 2023
1 parent 39958e0 commit 8601042
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
10 changes: 9 additions & 1 deletion tools/deployment_manager/configs/darwin.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"ui_name": "OpenVINO Runtime for Intel(R) CPU",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
Expand Down Expand Up @@ -85,6 +85,14 @@
"files": [
"python/python3.10"
]
},
"python3.11": {
"ui_name": "OpenVINO Python API for Python 3.11",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.11"
]
}
}
}
14 changes: 11 additions & 3 deletions tools/deployment_manager/configs/linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"ui_name": "OpenVINO 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",
"ui_name": "OpenVINO Runtime for Intel(R) Processor Graphics",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
Expand All @@ -69,7 +69,7 @@
]
},
"gna": {
"ui_name": "Inference Engine Runtime for Intel(R) Gaussian Neural Accelerator",
"ui_name": "OpenVINO Runtime for Intel(R) Gaussian Neural Accelerator",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
Expand Down Expand Up @@ -109,6 +109,14 @@
"files": [
"python/python3.10"
]
},
"python3.11": {
"ui_name": "OpenVINO Python API for Python 3.11",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.11"
]
}
}
}
14 changes: 11 additions & 3 deletions tools/deployment_manager/configs/windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,15 @@
]
},
"cpu": {
"ui_name": "Inference Engine Runtime for Intel(R) CPU",
"ui_name": "OpenVINO 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",
"ui_name": "OpenVINO Runtime for Intel(R) Processor Graphics",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
Expand All @@ -49,7 +49,7 @@
]
},
"gna": {
"ui_name": "Inference Engine Runtime for Intel(R) Gaussian Neural Accelerator",
"ui_name": "OpenVINO Runtime for Intel(R) Gaussian Neural Accelerator",
"group": ["ie"],
"dependencies" : ["ie_core"],
"files": [
Expand Down Expand Up @@ -88,6 +88,14 @@
"files": [
"python/python3.10"
]
},
"python3.11": {
"ui_name": "OpenVINO Python API for Python 3.11",
"group": ["python"],
"dependencies" : ["ie_core"],
"files": [
"python/python3.11"
]
}
}
}

0 comments on commit 8601042

Please sign in to comment.