Package Details: openvino 2024.1.0-3

Git Clone URL: https://aur.archlinux.org/openvino.git (read-only, click to copy)
Package Base: openvino
Description: A toolkit for developing artificial inteligence and deep learning applications
Upstream URL: https://docs.openvinotoolkit.org/
Licenses: Apache-2.0
Conflicts: intel-openvino
Provides: intel-openvino
Replaces: intel-openvino
Submitter: dbermond
Maintainer: dbermond
Last Packager: dbermond
Votes: 10
Popularity: 1.15
First Submitted: 2020-12-23 22:29 (UTC)
Last Updated: 2024-05-04 15:56 (UTC)

Dependencies (24)

Sources (29)

Latest Comments

1 2 3 4 5 Next › Last »

dbermond commented on 2024-05-04 19:14 (UTC)

@applebloom Nice, good to know it worked for you. Thank you for the confirmation.

applebloom commented on 2024-05-04 19:08 (UTC)

@dbermond It worked, thanks.

dbermond commented on 2024-05-04 15:57 (UTC)

@applebloom I have pushed an update that should make it work for you now.

applebloom commented on 2024-05-04 14:25 (UTC)

I have trouble building this now. I'm not sure what's the problem, but it could perhaps be because I have a sandy bridge cpu which doesn't have AVX2, and the pkgbuild now sets x86-64-v3? Is that a requirement for openvino now?

dbermond commented on 2024-04-26 17:06 (UTC)

@eme yes, thank you for noticing this. Package updated. Added as an optional dependency.

eme commented on 2024-04-26 02:30 (UTC) (edited on 2024-04-26 02:32 (UTC) by eme)

@dbermond should level-zero-loader be added as a dep for 2024.1.0-1?


ldd /opt/intel/openvino/runtime/lib/intel64/libopenvino_intel_npu_plugin.so

    libze_loader.so.1 => not found

pacman -F libze_loader.so.1

extra/level-zero-loader 1.15.1-1
usr/lib/libze_loader.so.1

dbermond commented on 2024-04-04 23:00 (UTC)

@cesman This is a connection error. Keep trying and it should work. All the sources are hosted in github, which is supposed to have a good server infrastructure, and it's working fine now.

cesman commented on 2024-04-01 01:36 (UTC) (edited on 2024-04-01 01:37 (UTC) by cesman)

Trying to make the package, I get the following error:

error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 ==> ERROR: Failure while downloading openvino git repo Aborting...

dbermond commented on 2024-02-26 16:09 (UTC)

@inlophe Now that we have a proper error message being show, we can address the issue. Package updated with the fix.

msa81 commented on 2024-02-19 22:28 (UTC) (edited on 2024-02-19 22:30 (UTC) by msa81)

@inlophe

Linker failed for an obvious reason: 'target-specific option mismatch' actually points to incorrect compiler tuning for the asked CPU capabilites. You're probably using arch installation default CFLAGS options for makepkg, e.g., CFLAGS="-march=x86-64 -mtune=generic -O2 -pipe..." which won't work with OpenVino due to the missing access to the CPU vector instructions. There are several ways to fight that:

  • package maintainer overrides CFLAGS in the PKGBUILD with proper ones

  • change CFLAGS="-march=x86-64 -mtune=generic -O2..." to CFLAGS="-march=native -O2..." in /etc/makepkg.conf. This is the approach I'm using anyway. The drawback is that every single AUR package that needs compiling will not be usable in it's final form if there are some CPU instructions missing on another machine.

  • everything else like make your own local PKGBUILD, change the environment, etc.