2019-12-03 04:49:50 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, substituteAll, cmake, bash }:
|
|
|
|
|
2020-04-18 16:38:48 +01:00
|
|
|
# This was originally called mkl-dnn, then it was renamed to dnnl, and it has
|
|
|
|
# just recently been renamed again to oneDNN. In a follow-up, let's move the
|
|
|
|
# attr and alias dnnl -> oneDNN. See here for details:
|
|
|
|
# https://github.com/oneapi-src/oneDNN#oneapi-deep-neural-network-library-onednn
|
2019-12-03 04:49:50 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "dnnl";
|
2020-04-18 16:38:48 +01:00
|
|
|
version = "1.4";
|
2019-12-03 04:49:50 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-04-18 16:38:48 +01:00
|
|
|
owner = "oneapi-src";
|
|
|
|
repo = "oneDNN";
|
2019-12-03 04:49:50 +00:00
|
|
|
rev = "v${version}";
|
2020-04-18 16:38:48 +01:00
|
|
|
sha256 = "162fb0c7klahz2irchhyxympi4fq4yp284apc53cadbss41mzld9";
|
2019-12-03 04:49:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" "doc" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2020-02-03 01:24:23 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2019-12-03 04:49:50 +00:00
|
|
|
# The test driver doesn't add an RPath to the build libdir
|
|
|
|
preCheck = ''
|
|
|
|
export LD_LIBRARY_PATH=$PWD/src
|
|
|
|
'';
|
|
|
|
|
2020-02-03 01:24:23 +00:00
|
|
|
# The cmake install gets tripped up and installs a nix tree into $out, in
|
|
|
|
# addition to the correct install; clean it up.
|
|
|
|
postInstall = ''
|
|
|
|
rm -r $out/nix
|
|
|
|
'';
|
2019-12-03 04:49:50 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-18 16:38:48 +01:00
|
|
|
description = "oneAPI Deep Neural Network Library (oneDNN)";
|
|
|
|
homepage = "https://01.org/dnnl";
|
|
|
|
changelog = "https://github.com/oneapi-src/oneDNN/releases/tag/v${version}";
|
2019-12-03 04:49:50 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ alexarice bhipple ];
|
|
|
|
};
|
|
|
|
}
|