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

« First ‹ Previous 1 2 3 4 5 Next › Last »

dbermond commented on 2023-04-02 15:23 (UTC)

@Eirikr I've pushed a fix. My guess is that this is some incompatibility with newer cmake versions. Building fine now.

Eirikr commented on 2023-04-01 22:00 (UTC)

I keep receiving this message:

CMake Warning at cmake/developer_package/python_requirements.cmake:108 (message):
  Python requirement file
  /home/eric/.cache/yay/openvino/src/openvino/src/bindings/python/wheel/requirements-dev.txt
  is not installed,
Call Stack (most recent call first):
  src/bindings/python/CMakeLists.txt:129 (ov_check_pip_packages)


-- Performing Test HAS_FLTO
-- Performing Test HAS_FLTO - Success
-- Python version=python3.10
-- Python version=python3.10
-- Found Cython: /usr/bin/cython  
-- Found PythonInterp: /usr/bin/python3 (found suitable version "3.10.10", minimum required is "3") 
-- Found Cython version 0.29.33
-- Found CUDA: /opt/cuda (found suitable exact version "12.1") 
CMake Error at /usr/share/cmake/Modules/FindOpenCL.cmake:51 (if):
  if given arguments:

    "EXISTS" "/home/eric/.cache/yay/openvino/src/openvino/thirdparty/ocl/cl_headers" "/home/eric/.cache/yay/openvino/src/openvino/thirdparty/ocl/clhpp_headers/include/Headers/cl.h"

  Unknown arguments specified
Call Stack (most recent call first):
  /usr/share/cmake/Modules/FindOpenCL.cmake:95 (_FIND_OPENCL_VERSION)
  samples/cpp/benchmark_app/CMakeLists.txt:84 (find_package)

In my /etc/profile I have: export OCL_ICD_VENDORS=/etc/OpenCL/vendors/ which still does not seem to work.

mozzribo commented on 2022-11-14 22:38 (UTC)

Yep, it works now! Thanks for the maintenance. :) I deleted my previous comment as it was pretty lengthy.

dbermond commented on 2022-11-14 14:06 (UTC)

@mozzribo I've just updated the package right before your comment, and it's building fine. The git fix was pushed. Probably you are using an outdated checkout of this repository. Make sure to update it with 'git pull', or clone it again.

dbermond commented on 2022-05-02 21:14 (UTC)

@AaronC Instead of using a virtual machine with a fresh install just to build a package, build the package in a clean chroot. That's how all the packages in the official repositories are built, and that's how I built all my packages. It assures that there are no interference with files and variables from your environment, as it's built in an isolated chroot environment. It should build fine for you in this way, as it builds fine for me, since it will be built on the same isolated environment. Beware that the built package may give problems to you at runtime, since you appear to have custom stuff on '/usr/local' that can interfere (as building on the chroot will use only files from the official repositories if you don't install anything else on the chroot), and you should make sure to have a clear Arch Linux environment firstly if you opt for doing this way.

AaronC commented on 2022-05-02 13:39 (UTC)

@dbermond Thank you for checking. I don't see any clear error messages anywhere in the output. I was assuming that the /usr/local stuff was part of this install. It's been a few years since I've refreshed my base installation, so it is certainly possible that I have some conflicting libraries installed. Normally I would spin up a virtual machine and install it on a fresh install, but unfortunately I am trying to get this to work with an Intel NCS2 which behaves really oddly when used from a virtual machine.

Thanks, Aaron

dbermond commented on 2022-04-29 21:45 (UTC)

@AaronC I've just checked, and the package is building fine for me. Maybe your build log have previous errors that are not on your pastebin, since there are no clear error messages on pastebin. Anyway, it looks like that something is clearly wrong with your system, since the ld warning is being shown for a library that is at '/usr/local', and Arch Linux does not uses '/usr/local'. ld complains about libImath-2_2.so.12, but Arch Linux ships libImath-3_1.so.29, so it's referring to a file that is not shipped by the official repositories. At a first glance, it seems that you have some custom stuff installed that is conflicting. My build log does not show anything related to '/usr/local' and/or non-shipped libImath-2_2.so.12, and no such ld warnings.