We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a4992a9 + a70b96d commit f2e2da7Copy full SHA for f2e2da7
gimpopenvino/tools/complete_install.py
@@ -33,6 +33,12 @@ def setup_python_weights(install_location=None):
33
plugin_loc = os.path.dirname(gimpopenvino.__file__)
34
ie = Core()
35
supported_devices = ie.available_devices
36
+
37
+ for i in supported_devices:
38
+ if "Intel" not in ie.get_property(i, "FULL_DEVICE_NAME"):
39
+ supported_devices.remove(i)
40
41
42
py_dict = {
43
"python_path" : python_path,
44
"weight_path" : weight_path,
0 commit comments