mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
42 lines
906 B
Nix
42 lines
906 B
Nix
{ stdenv, fetchFromGitHub, coreutils, gfortran7, gnused
|
|
, python27, utillinux, which, bash
|
|
}:
|
|
|
|
let
|
|
version = "1.15";
|
|
in stdenv.mkDerivation {
|
|
pname = "libxsmm";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hfp";
|
|
repo = "libxsmm";
|
|
rev = "refs/tags/${version}";
|
|
sha256 = "1406qk7k2k4qfqy4psqk55iihsrx91w8kjgsa82jxj50nl9nw5nj";
|
|
};
|
|
|
|
buildInputs = [
|
|
coreutils
|
|
gfortran7
|
|
gnused
|
|
python27
|
|
utillinux
|
|
which
|
|
];
|
|
|
|
prePatch = ''
|
|
patchShebangs .
|
|
'';
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives";
|
|
license = licenses.bsd3;
|
|
homepage = "https://github.com/hfp/libxsmm";
|
|
platforms = platforms.linux;
|
|
maintainers = with stdenv.lib.maintainers; [ chessai ];
|
|
inherit version;
|
|
};
|
|
}
|