openvino: 2024.4.1 -> 2024.5.0
https://github.com/openvinotoolkit/openvino/releases/tag/2024.5.0
This commit is contained in:
parent
5e2c2958b3
commit
88700dd261
@ -60,14 +60,14 @@ in
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "openvino";
|
pname = "openvino";
|
||||||
version = "2024.4.1";
|
version = "2024.5.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "openvinotoolkit";
|
owner = "openvinotoolkit";
|
||||||
repo = "openvino";
|
repo = "openvino";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
hash = "sha256-v0PPGFUHCGNWdlTff40Ol2NvaYglb/+L/zZAQujk6lk=";
|
hash = "sha256-qRa6vTwTEWiSH57HThT2oGhJqhHwFLIqNsU1eCSLwLs=";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [
|
outputs = [
|
||||||
@ -124,6 +124,7 @@ stdenv.mkDerivation rec {
|
|||||||
(cmakeBool "ENABLE_LTO" true)
|
(cmakeBool "ENABLE_LTO" true)
|
||||||
(cmakeBool "ENABLE_ONEDNN_FOR_GPU" false)
|
(cmakeBool "ENABLE_ONEDNN_FOR_GPU" false)
|
||||||
(cmakeBool "ENABLE_OPENCV" true)
|
(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)
|
(cmakeBool "ENABLE_PYTHON" true)
|
||||||
|
|
||||||
# system libs
|
# system libs
|
||||||
@ -139,6 +140,9 @@ stdenv.mkDerivation rec {
|
|||||||
"libngraph_backend.so"
|
"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 = [
|
buildInputs = [
|
||||||
flatbuffers
|
flatbuffers
|
||||||
gflags
|
gflags
|
||||||
|
Loading…
Reference in New Issue
Block a user