Merge pull request #93623 from marsam/enable-oneDNN-darwin

oneDNN: 1.5 -> 1.5.1
This commit is contained in:
Mario Rodas 2020-07-22 20:20:52 -05:00 committed by GitHub
commit bd0eb11616
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,13 +5,13 @@
# https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn # https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "oneDNN"; pname = "oneDNN";
version = "1.5"; version = "1.5.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "oneapi-src"; owner = "oneapi-src";
repo = "oneDNN"; repo = "oneDNN";
rev = "v${version}"; rev = "v${version}";
sha256 = "0diiy3g4wz5lnz5mdvka5p2nwmrpfldsz83sssr5yiir29m4lqap"; sha256 = "1l66gkidldjpznp8pb01wdgrmm0rmrbndv8lzidz8fp9hf473zgl";
}; };
outputs = [ "out" "dev" "doc" ]; outputs = [ "out" "dev" "doc" ];
@ -22,7 +22,8 @@ stdenv.mkDerivation rec {
# The test driver doesn't add an RPath to the build libdir # The test driver doesn't add an RPath to the build libdir
preCheck = '' preCheck = ''
export LD_LIBRARY_PATH=$PWD/src export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$PWD/src
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH''${DYLD_LIBRARY_PATH:+:}$PWD/src
''; '';
# The cmake install gets tripped up and installs a nix tree into $out, in # The cmake install gets tripped up and installs a nix tree into $out, in
@ -33,10 +34,10 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "oneAPI Deep Neural Network Library (oneDNN)"; description = "oneAPI Deep Neural Network Library (oneDNN)";
homepage = "https://01.org/dnnl"; homepage = "https://01.org/oneDNN";
changelog = "https://github.com/oneapi-src/oneDNN/releases/tag/v${version}"; changelog = "https://github.com/oneapi-src/oneDNN/releases/tag/v${version}";
license = licenses.asl20; license = licenses.asl20;
platforms = [ "aarch64-linux" "x86_64-linux" ]; platforms = platforms.all;
maintainers = with maintainers; [ alexarice bhipple ]; maintainers = with maintainers; [ alexarice bhipple ];
}; };
} }