2022-04-27 09:35:20 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, gfortran
|
2020-11-24 20:58:05 +00:00
|
|
|
, python3, util-linux, which
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-01-05 17:05:55 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
2020-05-29 06:06:01 +00:00
|
|
|
}:
|
|
|
|
|
2021-07-18 21:22:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-05-29 06:06:01 +00:00
|
|
|
pname = "libxsmm";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "1.17";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2024-09-19 14:19:46 +00:00
|
|
|
owner = "libxsmm";
|
2020-05-29 06:06:01 +00:00
|
|
|
repo = "libxsmm";
|
2020-09-25 04:45:31 +00:00
|
|
|
rev = version;
|
2024-09-19 14:19:46 +00:00
|
|
|
sha256 = "sha256-s/NEFU4IwQPLyPLwMmrrpMDd73q22Sk2BNid/kedawY=";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
# Fixes /build references in the rpath
|
|
|
|
patches = [ ./rpath.patch ];
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2024-09-19 14:19:46 +00:00
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
gfortran
|
|
|
|
python3
|
2020-11-24 20:58:05 +00:00
|
|
|
util-linux
|
2020-05-29 06:06:01 +00:00
|
|
|
which
|
|
|
|
];
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
makeFlags = let
|
|
|
|
static = if enableStatic then "1" else "0";
|
|
|
|
in [
|
|
|
|
"OMP=1"
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"STATIC=${static}"
|
|
|
|
];
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $dev/lib/pkgconfig
|
|
|
|
mv $out/lib/*.pc $dev/lib/pkgconfig
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
moveToOutput "share/libxsmm" ''${!outputDoc}
|
2023-10-09 19:29:22 +00:00
|
|
|
'';
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
prePatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2024-09-26 11:04:55 +00:00
|
|
|
broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
|
2020-05-29 06:06:01 +00:00
|
|
|
description = "Library targeting Intel Architecture for specialized dense and sparse matrix operations, and deep learning primitives";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "libxsmm_gemm_generator";
|
2020-05-29 06:06:01 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = "https://github.com/hfp/libxsmm";
|
|
|
|
platforms = platforms.linux;
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = with lib.maintainers; [ chessai ];
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
}
|