Package Details: openvino-git 2024.3.0.r173.g3e058b90a89-1

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

Dependencies (23)

Required by (8)

Sources (32)

Latest Comments

« First ‹ Previous 1 2

Eirikr commented on 2023-04-01 19:48 (UTC) (edited on 2023-04-01 19:51 (UTC) by Eirikr)

For the Neural Compute Stick 2 I had to add to the PKGBUILD: -DENABLE_MYRIAD:BOOL='ON' \ and -DENABLE_VPU:BOOL='ON' \

dbermond commented on 2023-03-04 16:28 (UTC)

@dreieck I got a build error too, but not on cmake like you. Mine was deeper in the build stage when building gna. I've disabled gna and it's building fine for me now. Regarding sources, downloading them in the sources array is implemented in the stable openvino package. This does not makes sense here in the VCS package, since these sources are always being updated by upstream (hence upstream downloads them through cmake), so specifying them manually in the sources array like in the stable package will cause frequent breakages when upstream updates.

dreieck commented on 2023-02-27 10:31 (UTC) (edited on 2023-02-27 10:32 (UTC) by dreieck)

openvino-git fails to build for me at gna with CMake Error at thirdparty/CMakeLists.txt:399 (set_property)::

==> Starting build()...
[...]
-- extracting...
         src='/tmp/makepkg/build/openvino-git/src/openvino/temp/download/gna/gna_03.00.00.1910.zip'
         dst='/tmp/makepkg/build/openvino-git/src/openvino/temp/gna_03.00.00.1910'
-- extracting... [tar xfz] gna_03.00.00.1910/include gna_03.00.00.1910/linux
-- PROJECT ............................... OpenVINO
-- CMAKE_VERSION ......................... 3.25.2
-- CMAKE_BINARY_DIR ...................... /tmp/makepkg/build/openvino-git/src/build
-- CMAKE_SOURCE_DIR ...................... /tmp/makepkg/build/openvino-git/src/openvino
-- OpenVINO_SOURCE_DIR ................... /tmp/makepkg/build/openvino-git/src/openvino
-- OpenVINO_BINARY_DIR ................... /tmp/makepkg/build/openvino-git/src/build
-- CMAKE_GENERATOR ....................... Unix Makefiles
-- CMAKE_C_COMPILER_ID ................... GNU
-- CMAKE_CXX_COMPILER_ID ................. GNU
-- CMAKE_BUILD_TYPE ...................... Release
-- CMAKE_TOOLCHAIN_FILE .................. 
-- GLIBC_VERSION.......................... 2.37
-- Found OpenCL (ver. 3.0, include dirs /usr/include)
-- /usr/bin/pkg-config: zlib (1.2.13) is found at /usr
-- gflags (2.2.2) is found at /usr/lib/cmake/gflags using '' component
-- Found Protobuf: /usr/lib/libprotobuf.so (found suitable version "3.21.12", minimum required is "3.18.2") 
CMake Error at thirdparty/CMakeLists.txt:399 (set_property):
  set_property could not find TARGET flatbuffers::flatc.  Perhaps it has not
  yet been created.

[...]
-- Configuring incomplete, errors occurred!
See also "/tmp/makepkg/build/openvino-git/src/build/CMakeFiles/CMakeOutput.log".

The mentioned file /tmp/makepkg/build/openvino-git/src/build/CMakeFiles/CMakeOutput.log can be found ↗ here.

Regards!

dreieck commented on 2023-02-27 10:31 (UTC)

Can you please move all download steps into prepare(), if you cannot explicitly pre-download the files via the source array?:

==> Starting build()...
[...]
-- Downloading from https://storage.openvinotoolkit.org/dependencies/gna/gna_03.00.00.1910.zip to /tmp/makepkg/build/openvino-git/src/openvino/temp/download/gna/gna_03.00.00.1910.zip ...
-- /usr/bin/aria2c ,*.*.*.* -d /tmp/makepkg/build/openvino-git/src/openvino/temp/download/gna https://storage.openvinotoolkit.org/dependencies/gna/gna_03.00.00.1910.zip

02/27 00:55:28 [NOTICE] Downloading 1 item(s)
[#b5f6e9 0B/2.1MiB(0%) CN:1 DL:68KiB ETA:31s]
[#b5f6e9 384KiB/2.1MiB(17%) CN:1 DL:368KiB ETA:4s]
[#b5f6e9 832KiB/2.1MiB(38%) CN:1 DL:411KiB ETA:3s]
[#b5f6e9 1.2MiB/2.1MiB(58%) CN:1 DL:376KiB ETA:2s]

02/27 00:55:34 [NOTICE] Download complete: /tmp/makepkg/build/openvino-git/src/openvino/temp/download/gna/gna_03.00.00.1910.zip

Download Results:
gid   |stat|avg speed  |path/URI
======+====+===========+=======================================================
b5f6e9|OK  |   497KiB/s|/tmp/makepkg/build/openvino-git/src/openvino/temp/download/gna/gna_03.00.00.1910.zip

Status Legend:
(OK):download completed.
[...]

Thanks for maintaining!