3
0
Fork 0
forked from mirrors/nixpkgs

Numpy: Replace ATLAS and liblapack with openblas (that has blas and lapack).

Was previously with ATLAS [Automatically Tuned Linear Algebra Software].
This takes ages and has little to no performance benefit over openblas+lapack.
And if you need this performance, you should really built it against your own hardware.
This commit is contained in:
Olav 2015-02-17 03:53:05 +00:00
parent a52343ffe1
commit 380bd3f48a

View file

@ -6657,7 +6657,7 @@ let
'';
preBuild = ''
export BLAS=${pkgs.blas} LAPACK=${pkgs.liblapack}
export BLAS=${pkgs.openblas} LAPACK=${pkgs.openblas}
'';
setupPyBuildFlags = ["--fcompiler='gnu95'"];
@ -6666,7 +6666,7 @@ let
doCheck = false;
buildInputs = with self; [ pkgs.gfortran ];
propagatedBuildInputs = with self; [ pkgs.liblapack pkgs.blas ];
propagatedBuildInputs = with self; [ pkgs.openblas ];
meta = {
description = "Scientific tools for Python";