On my quest to run a local AI stack on Leap 16 for my Intel Ultra 5 225H processor , I came upon Intel’s OpenVino project, which allows the utilization of GPU & NPU acceleration for the Ollama stack.
A ‘zypper search openvino’ revealed a list of 15 openvino related RPM packages, plus 2 Python Packages.
a. The most important library ‘openvino-intel-gpu-plugin.so’ is missing.
b. From a user perspective, all 15 (16) packages should be installed as one.
c. Running python3 -m pip install openvino-genai is correctly installing all packes in '/usr/local/lib64/python3.13/site-packages/openvino/libs/`, including the GPU library.
d. But the versions differ. Leap 16 packages are based on version 2520, while the Python version is the newer version 2541.
Question: Is it possible to release a single package with the latest version as an update, or at least as a pattern including all files from the OpenVino project?
@klerai As root user; zypper ar -f -g -n "openvino test" https://download.opensuse.org/repositories/home:/malcolmlewis:/branches:/science:/machinelearning/16.0/ repo-openvino test
Then use zypper -vvv in openvino-intel-gpu-plugin --from repo-openvino test --allow-vendor-change should switch packages for you to test.
‘zypper ar’ complains with to many parameter, unless I drop the ‘test’ key word.
zypper -vvv in openvino --from repo-openvino --allow-vendor-change
....
Checking whether to refresh metadata for openvino test
Retrieving repository 'openvino test' metadata .................................................................................................................[error]
Repository 'openvino test' is invalid.
[repo-openvino test|https://opensuse.org/repositories/home:/malcolmlewis:/branches:/science:/machinelearning/16.0/] Failed to retrieve new repository metadata.
History:
- [repo-openvino test|https://opensuse.org/repositories/home:/malcolmlewis:/branches:/science:/machinelearning/16.0/] Repository type can't be determined.
Please check if the URIs defined for this repository are pointing to a valid repository.
Warning: Skipping repository 'openvino test' because of the above error.
Some of the repositories have not been refreshed because of an error.
Loading repository data...
Reading installed packages...
'-allow-vChecking whether to refresh metadata for openvino test
Retrieving repository 'openvino test' metadata .................................................................................................................[error]
Repository 'openvino test' is invalid.
[repo-openvino test|https://opensuse.org/repositories/home:/malcolmlewis:/branches:/science:/machinelearning/16.0/] Failed to retrieve new repository metadata.
History:
- [repo-openvino test|https://opensuse.org/repositories/home:/malcolmlewis:/branches:/science:/machinelearning/16.0/] Repository type can't be determined.
Please check if the URIs defined for this repository are pointing to a valid repository.
Warning: Skipping repository 'openvino test' because of the above error.
Some of the repositories have not been refreshed because of an error.
Loading repository data...
Reading installed packages...
'-allow-vendor-change' is not a package name or capability.
endor-change' is not a package name or capability.```
* >>> is there any wrong on my end?