openvino: 2024.4.1 -> 2024.5.0

https://github.com/openvinotoolkit/openvino/releases/tag/2024.5.0
This commit is contained in:
Martin Weinelt 2024-11-21 00:51:48 +01:00
parent 5e2c2958b3
commit 88700dd261
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -60,14 +60,14 @@ in
stdenv.mkDerivation rec {
pname = "openvino";
version = "2024.4.1";
version = "2024.5.0";
src = fetchFromGitHub {
owner = "openvinotoolkit";
repo = "openvino";
rev = "refs/tags/${version}";
fetchSubmodules = true;
hash = "sha256-v0PPGFUHCGNWdlTff40Ol2NvaYglb/+L/zZAQujk6lk=";
hash = "sha256-qRa6vTwTEWiSH57HThT2oGhJqhHwFLIqNsU1eCSLwLs=";
};
outputs = [
@ -124,6 +124,7 @@ stdenv.mkDerivation rec {
(cmakeBool "ENABLE_LTO" true)
(cmakeBool "ENABLE_ONEDNN_FOR_GPU" false)
(cmakeBool "ENABLE_OPENCV" true)
(cmakeBool "ENABLE_OV_JAX_FRONTEND" false) # auto-patchelf could not satisfy dependency libopenvino_jax_frontend.so.2450
(cmakeBool "ENABLE_PYTHON" true)
# system libs
@ -139,6 +140,9 @@ stdenv.mkDerivation rec {
"libngraph_backend.so"
];
# src/graph/src/plugins/intel_gpu/src/graph/include/reorder_inst.h:24:8: error: type 'struct typed_program_node' violates the C++ One Definition Rule [-Werror=odr]
env.NIX_CFLAGS_COMPILE = "-Wno-odr";
buildInputs = [
flatbuffers
gflags