magma: 2.0.2 -> 2.5.0
This commit is contained in:
parent
a0b743f47c
commit
6d7282d74a
@ -1,24 +1,31 @@
|
|||||||
{ stdenv, fetchurl, cmake, gfortran, cudatoolkit, libpthreadstubs, liblapack }:
|
{ stdenv, fetchurl, cmake, gfortran, cudatoolkit, libpthreadstubs, liblapack
|
||||||
|
, mklSupport ? false, mkl ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert !mklSupport || mkl != null;
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
let version = "2.0.2";
|
let version = "2.5.0";
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
pname = "magma";
|
pname = "magma";
|
||||||
inherit version;
|
inherit version;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${version}.tar.gz";
|
url = "https://icl.cs.utk.edu/projectsfiles/magma/downloads/magma-${version}.tar.gz";
|
||||||
sha256 = "0w3z6k1npfh0d3r8kpw873f1m7lny29sz2bvvfxzk596d4h083lk";
|
sha256 = "0czspk93cv1fy37zyrrc9k306q4yzfxkhy1y4lj937dx8rz5rm2g";
|
||||||
name = "magma-${version}.tar.gz";
|
name = "magma-${version}.tar.gz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gfortran cudatoolkit libpthreadstubs liblapack cmake ];
|
buildInputs = [ gfortran cudatoolkit libpthreadstubs cmake ]
|
||||||
|
++ (if mklSupport then [ mkl ] else [ liblapack ]);
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
#checkTarget = "tests";
|
|
||||||
|
MKLROOT = optionalString mklSupport "${mkl}";
|
||||||
|
|
||||||
enableParallelBuilding=true;
|
enableParallelBuilding=true;
|
||||||
|
buildFlags = [ "magma" "magma_sparse" ];
|
||||||
|
|
||||||
# MAGMA's default CMake setup does not care about installation. So we copy files directly.
|
# MAGMA's default CMake setup does not care about installation. So we copy files directly.
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -42,6 +49,6 @@ in stdenv.mkDerivation {
|
|||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
homepage = http://icl.cs.utk.edu/magma/index.html;
|
homepage = http://icl.cs.utk.edu/magma/index.html;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ ianwookim ];
|
maintainers = with maintainers; [ tbenst ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user