Skip to content

Commit 254c77c

Browse files
authored
openvino: 2024.4.1 -> 2024.5.0 (#357723)
2 parents 24512fe + 88700dd commit 254c77c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/by-name/op/openvino/package.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ in
6060

6161
stdenv.mkDerivation rec {
6262
pname = "openvino";
63-
version = "2024.4.1";
63+
version = "2024.5.0";
6464

6565
src = fetchFromGitHub {
6666
owner = "openvinotoolkit";
6767
repo = "openvino";
6868
rev = "refs/tags/${version}";
6969
fetchSubmodules = true;
70-
hash = "sha256-v0PPGFUHCGNWdlTff40Ol2NvaYglb/+L/zZAQujk6lk=";
70+
hash = "sha256-qRa6vTwTEWiSH57HThT2oGhJqhHwFLIqNsU1eCSLwLs=";
7171
};
7272

7373
outputs = [
@@ -124,6 +124,7 @@ stdenv.mkDerivation rec {
124124
(cmakeBool "ENABLE_LTO" true)
125125
(cmakeBool "ENABLE_ONEDNN_FOR_GPU" false)
126126
(cmakeBool "ENABLE_OPENCV" true)
127+
(cmakeBool "ENABLE_OV_JAX_FRONTEND" false) # auto-patchelf could not satisfy dependency libopenvino_jax_frontend.so.2450
127128
(cmakeBool "ENABLE_PYTHON" true)
128129

129130
# system libs
@@ -139,6 +140,9 @@ stdenv.mkDerivation rec {
139140
"libngraph_backend.so"
140141
];
141142

143+
# 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]
144+
env.NIX_CFLAGS_COMPILE = "-Wno-odr";
145+
142146
buildInputs = [
143147
flatbuffers
144148
gflags

0 commit comments

Comments
 (0)