1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00

Merge pull request #320646 from NixOS/backport-320547-to-release-24.05

[Backport release-24.05] openvino: 2024.1.0 -> 2024.2.0; fix aarch64-linux build; tbb_2021_5: init
This commit is contained in:
Martin Weinelt 2024-06-18 13:41:10 +02:00 committed by GitHub
commit 7ba8d37c0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 99 additions and 10 deletions

View file

@ -5,6 +5,7 @@
, cudaSupport ? opencv.cudaSupport or false
# build
, scons
, addOpenGLRunpath
, autoPatchelfHook
, cmake
@ -25,7 +26,7 @@
, protobuf
, pugixml
, snappy
, tbb
, tbb_2021_5
, cudaPackages
}:
@ -36,6 +37,9 @@ let
stdenv = gcc12Stdenv;
# prevent scons from leaking in the default python version
scons' = scons.override { python3 = python3Packages.python; };
tbbbind_version = "2_5";
tbbbind = fetchurl {
url = "https://storage.openvinotoolkit.org/dependencies/thirdparty/linux/tbbbind_${tbbbind_version}_static_lin_v4.tgz";
@ -54,14 +58,14 @@ in
stdenv.mkDerivation rec {
pname = "openvino";
version = "2024.1.0";
version = "2024.2.0";
src = fetchFromGitHub {
owner = "openvinotoolkit";
repo = "openvino";
rev = "refs/tags/${version}";
fetchSubmodules = true;
hash = "sha256-OOSxXpLjmhOgKvrSO6SmY7xLhJSzGXT8w/Y4FnfwTqU=";
hash = "sha256-HiKKvmqgbwW625An+Su0EOHqVrP18yvG2aOzrS0jWr4=";
};
outputs = [
@ -78,6 +82,7 @@ stdenv.mkDerivation rec {
patchelf
pkg-config
python
scons'
shellcheck
] ++ lib.optionals cudaSupport [
cudaPackages.cuda_nvcc
@ -91,7 +96,9 @@ stdenv.mkDerivation rec {
popd
'';
dontUseCmakeBuildDir = true;
dontUseSconsCheck = true;
dontUseSconsBuild = true;
dontUseSconsInstall = true;
cmakeFlags = [
"-Wno-dev"
@ -109,7 +116,7 @@ stdenv.mkDerivation rec {
(cmakeBool "ENABLE_SAMPLES" false)
# features
(cmakeBool "ENABLE_INTEL_CPU" true)
(cmakeBool "ENABLE_INTEL_CPU" stdenv.isx86_64)
(cmakeBool "ENABLE_JS" false)
(cmakeBool "ENABLE_LTO" true)
(cmakeBool "ENABLE_ONEDNN_FOR_GPU" false)
@ -125,8 +132,6 @@ stdenv.mkDerivation rec {
(cmakeBool "ENABLE_SYSTEM_TBB" true)
];
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isAarch64 "-Wno-narrowing";
autoPatchelfIgnoreMissingDeps = [
"libngraph_backend.so"
];
@ -140,7 +145,7 @@ stdenv.mkDerivation rec {
opencv.cxxdev
pugixml
snappy
tbb
tbb_2021_5
] ++ lib.optionals cudaSupport [
cudaPackages.cuda_cudart
];
@ -172,8 +177,7 @@ stdenv.mkDerivation rec {
homepage = "https://docs.openvinotoolkit.org/";
license = with licenses; [ asl20 ];
platforms = platforms.all;
broken = (stdenv.isLinux && stdenv.isAarch64) # requires scons, then fails with *** Source directory cannot be under variant directory.
|| stdenv.isDarwin; # Cannot find macos sdk
broken = stdenv.isDarwin; # Cannot find macos sdk
maintainers = with maintainers; [ tfmoraes ];
};
}

View file

@ -0,0 +1,71 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
}:
stdenv.mkDerivation rec {
pname = "tbb";
version = "2021.5.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub {
owner = "oneapi-src";
repo = "oneTBB";
rev = "v${version}";
hash = "sha256-TJ/oSSMvgtKuz7PVyIoFEbBW6EZz7t2wr/kP093HF/w=";
};
nativeBuildInputs = [
cmake
];
patches = [
# port of https://github.com/oneapi-src/oneTBB/pull/1031
./gcc13-fixes-2021.5.0.patch
(fetchpatch {
# Fix "field used uninitialized" on modern gcc versions (https://github.com/oneapi-src/oneTBB/pull/958)
url = "https://github.com/oneapi-src/oneTBB/commit/3003ec07740703e6aed12b028af20f4b0f16adae.patch";
hash = "sha256-l4+9IxIEdRX/q8JyDY9CPKWzSLatpIVSiNjmIM7ilj0=";
})
];
# Disable failing test on musl
# test/conformance/conformance_resumable_tasks.cpp:37:24: error: suspend is not a member of tbb::v1::task; did you mean tbb::detail::r1::suspend?
postPatch = lib.optionalString stdenv.hostPlatform.isMusl ''
substituteInPlace test/CMakeLists.txt \
--replace-fail 'conformance_resumable_tasks' ""
'';
# Fix build with modern gcc
# In member function 'void std::__atomic_base<_IntTp>::store(__int_type, std::memory_order) [with _ITp = bool]',
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [ "-Wno-error=array-bounds" "-Wno-error=stringop-overflow" "-Wno-address" ] ++
# error: variable 'val' set but not used
lib.optionals stdenv.cc.isClang [ "-Wno-error=unused-but-set-variable" ] ++
# Workaround for gcc-12 ICE when using -O3
# https://gcc.gnu.org/PR108854
lib.optionals (stdenv.cc.isGNU && stdenv.isx86_32) [ "-O2" ];
# Fix undefined reference errors with version script under LLVM.
NIX_LDFLAGS = lib.optionalString (stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17") "--undefined-version";
meta = with lib; {
description = "Intel Thread Building Blocks C++ Library";
homepage = "http://threadingbuildingblocks.org/";
license = licenses.asl20;
longDescription = ''
Intel Threading Building Blocks offers a rich and complete approach to
expressing parallelism in a C++ program. It is a library that helps you
take advantage of multi-core processor performance without having to be a
threading expert. Intel TBB is not just a threads-replacement library. It
represents a higher-level, task-based parallelism that abstracts platform
details and threading mechanisms for scalability and performance.
'';
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice tmarkus ];
};
}

View file

@ -0,0 +1,13 @@
diff --git a/test/common/utils_assert.h b/test/common/utils_assert.h
index 33bc8ab4..a3d21baf 100644
--- a/test/common/utils_assert.h
+++ b/test/common/utils_assert.h
@@ -20,6 +20,8 @@
#include "config.h"
#include "utils_report.h"
+#include <cstdlib>
+
#define REPORT_FATAL_ERROR REPORT
namespace utils {

View file

@ -16909,6 +16909,7 @@ with pkgs;
swiPrologWithGui = swiProlog.override { withGui = true; };
tbb_2020_3 = callPackage ../development/libraries/tbb/2020_3.nix { };
tbb_2021_5 = callPackage ../development/libraries/tbb/2021_5.nix { } ;
tbb_2021_11 = callPackage ../development/libraries/tbb { };
# many packages still fail with latest version
tbb = tbb_2020_3;