nixpkgs/pkgs/tools/misc/hpl/default.nix
Matthew Bauer 1c8aba8334 treewide: use blas and lapack
This makes packages use lapack and blas, which can wrap different
BLAS/LAPACK implementations.

treewide: cleanup from blas/lapack changes

A few issues in the original treewide:

- can’t assume blas64 is a bool
- unused commented code
2020-04-17 16:24:09 -05:00

33 lines
842 B
Nix

{ stdenv, fetchurl, blas, lapack, mpi } :
assert (!blas.is64bit) && (!lapack.is64bit);
stdenv.mkDerivation rec {
pname = "hpl";
version = "2.3";
src = fetchurl {
url = "http://www.netlib.org/benchmark/hpl/${pname}-${version}.tar.gz";
sha256 = "0c18c7fzlqxifz1bf3izil0bczv3a7nsv0dn6winy3ik49yw3i9j";
};
enableParallelBuilding = true;
postInstall = ''
# only contains the static lib
rm -r $out/lib
install -D testing/ptest/HPL.dat $out/share/hpl/HPL.dat
'';
buildInputs = [ blas lapack mpi ];
meta = with stdenv.lib; {
description = "Portable Implementation of the Linpack Benchmark for Distributed-Memory Computers";
homepage = "http://www.netlib.org/benchmark/hpl/";
platforms = platforms.unix;
license = licenses.bsdOriginal;
maintainers = [ maintainers.markuskowa ];
};
}