2018-10-04 03:24:21 +01:00
|
|
|
{ stdenvNoCC, writeText, fetchurl, rpmextract, undmg }:
|
|
|
|
/*
|
2018-10-23 22:33:49 +01:00
|
|
|
For details on using mkl as a blas provider for python packages such as numpy,
|
|
|
|
numexpr, scipy, etc., see the Python section of the NixPkgs manual.
|
|
|
|
*/
|
2018-08-18 01:48:40 +01:00
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
name = "mkl-${version}";
|
|
|
|
version = "${date}.${rel}";
|
|
|
|
date = "2019.0";
|
|
|
|
rel = "117";
|
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
src = if stdenvNoCC.isDarwin
|
|
|
|
then
|
|
|
|
(fetchurl {
|
|
|
|
url = "http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/13565/m_mkl_${version}.dmg";
|
|
|
|
sha256 = "1f1jppac7vqwn00hkws0p4njx38ajh0n25bsjyb5d7jcacwfvm02";
|
|
|
|
})
|
|
|
|
else
|
|
|
|
(fetchurl {
|
|
|
|
url = "http://registrationcenter-download.intel.com/akdlm/irc_nas/tec/13575/l_mkl_${version}.tgz";
|
|
|
|
sha256 = "1bf7i54iqlf7x7fn8kqwmi06g30sxr6nq3ac0r871i6g0p3y47sf";
|
|
|
|
});
|
2018-08-18 01:48:40 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
buildInputs = if stdenvNoCC.isDarwin then [ undmg ] else [ rpmextract ];
|
2018-08-18 01:48:40 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
buildPhase = if stdenvNoCC.isDarwin then ''
|
|
|
|
for f in Contents/Resources/pkg/*.tgz; do
|
|
|
|
tar xzvf $f
|
|
|
|
done
|
|
|
|
'' else ''
|
|
|
|
rpmextract rpm/intel-mkl-common-c-${date}-${rel}-${date}-${rel}.noarch.rpm
|
|
|
|
rpmextract rpm/intel-mkl-core-rt-${date}-${rel}-${date}-${rel}.x86_64.rpm
|
2018-10-23 22:33:49 +01:00
|
|
|
rpmextract rpm/intel-openmp-19.0.0-${rel}-19.0.0-${rel}.x86_64.rpm
|
2018-10-04 03:24:21 +01:00
|
|
|
'';
|
2018-08-18 01:48:40 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
installPhase = if stdenvNoCC.isDarwin then ''
|
|
|
|
mkdir -p $out/lib
|
2018-10-23 22:33:49 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
cp -r compilers_and_libraries_${version}/mac/mkl/include $out/
|
2018-10-23 22:33:49 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
cp -r compilers_and_libraries_${version}/licensing/mkl/en/license.txt $out/lib/
|
2018-10-23 22:33:49 +01:00
|
|
|
cp -r compilers_and_libraries_${version}/mac/compiler/lib/* $out/lib/
|
|
|
|
cp -r compilers_and_libraries_${version}/mac/mkl/lib/* $out/lib/
|
2018-10-03 03:53:48 +01:00
|
|
|
'' else ''
|
|
|
|
mkdir -p $out/lib
|
2018-10-23 22:33:49 +01:00
|
|
|
|
2018-10-03 03:53:48 +01:00
|
|
|
cp -r opt/intel/compilers_and_libraries_${version}/linux/mkl/include $out/
|
2018-10-23 22:33:49 +01:00
|
|
|
|
|
|
|
cp -r opt/intel/compilers_and_libraries_${version}/linux/compiler/lib/intel64_lin/* $out/lib/
|
2018-10-03 03:53:48 +01:00
|
|
|
cp -r opt/intel/compilers_and_libraries_${version}/linux/mkl/lib/intel64_lin/* $out/lib/
|
|
|
|
cp license.txt $out/lib/
|
2018-08-18 01:48:40 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
# Per license agreement, do not modify the binary
|
|
|
|
dontStrip = true;
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2018-10-04 03:24:21 +01:00
|
|
|
# Since these are unmodified binaries from Intel, they do not depend on stdenv
|
|
|
|
# and we can make them fixed-output derivations for cache efficiency.
|
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = if stdenvNoCC.isDarwin
|
2018-12-27 01:57:08 +00:00
|
|
|
then "00d49ls9vcjan1ngq2wx2q4p6lnm05zwh67hsmj7bnq43ykrfibw"
|
2018-10-23 22:33:49 +01:00
|
|
|
else "1amagcaan0hk3x9v7gg03gkw02n066v4kmjb32yyzsy5rfrivb1a";
|
2018-08-18 01:48:40 +01:00
|
|
|
|
|
|
|
meta = with stdenvNoCC.lib; {
|
|
|
|
description = "Intel Math Kernel Library";
|
|
|
|
longDescription = ''
|
|
|
|
Intel Math Kernel Library (Intel MKL) optimizes code with minimal effort
|
|
|
|
for future generations of Intel processors. It is compatible with your
|
|
|
|
choice of compilers, languages, operating systems, and linking and
|
|
|
|
threading models.
|
|
|
|
'';
|
|
|
|
homepage = https://software.intel.com/en-us/mkl;
|
2018-10-23 22:33:49 +01:00
|
|
|
license = licenses.issl;
|
2018-10-03 03:53:48 +01:00
|
|
|
platforms = [ "x86_64-linux" "x86_64-darwin" ];
|
2018-08-18 01:48:40 +01:00
|
|
|
maintainers = [ maintainers.bhipple ];
|
|
|
|
};
|
|
|
|
}
|