mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 19:23:50 +00:00
python3Packages.jax: fix MKL-enabled build on Intel CPUs
Intel doesn't know how to build a CPU it turns out. Don't use them for floating point arithmetic, even with their own MKL!
This commit is contained in:
parent
4ce387ea40
commit
069b742520
@ -64,8 +64,15 @@ buildPythonPackage rec {
|
||||
"tests/"
|
||||
];
|
||||
|
||||
# See https://github.com/google/jax/issues/9705.
|
||||
disabledTests = lib.optionals usingMKL [ "test_custom_root_with_aux" ];
|
||||
# See
|
||||
# * https://github.com/google/jax/issues/9705
|
||||
# * https://discourse.nixos.org/t/getting-different-results-for-the-same-build-on-two-equally-configured-machines/17921
|
||||
# * https://github.com/NixOS/nixpkgs/issues/161960
|
||||
disabledTests = lib.optionals usingMKL [
|
||||
"test_custom_linear_solve_cholesky"
|
||||
"test_custom_root_with_aux"
|
||||
"testEigvalsGrad_shape"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jax"
|
||||
|
Loading…
Reference in New Issue
Block a user