mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
125 lines
3.7 KiB
Nix
125 lines
3.7 KiB
Nix
{ lib
|
|
, absl-py
|
|
, blas
|
|
, buildPythonPackage
|
|
, etils
|
|
, fetchFromGitHub
|
|
, jaxlib
|
|
, jaxlib-bin
|
|
, lapack
|
|
, matplotlib
|
|
, numpy
|
|
, opt-einsum
|
|
, pytestCheckHook
|
|
, pytest-xdist
|
|
, pythonOlder
|
|
, scipy
|
|
, stdenv
|
|
, typing-extensions
|
|
}:
|
|
|
|
let
|
|
usingMKL = blas.implementation == "mkl" || lapack.implementation == "mkl";
|
|
# jaxlib is broken on aarch64-* as of 2023-03-05, but the binary wheels work
|
|
# fine. jaxlib is only used in the checkPhase, so switching backends does not
|
|
# impact package behavior. Get rid of this once jaxlib is fixed on aarch64-*.
|
|
jaxlib' = if jaxlib.meta.broken then jaxlib-bin else jaxlib;
|
|
in
|
|
buildPythonPackage rec {
|
|
pname = "jax";
|
|
version = "0.4.5";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = pname;
|
|
# google/jax contains tags for jax and jaxlib. Only use jax tags!
|
|
rev = "refs/tags/${pname}-v${version}";
|
|
hash = "sha256-UJzX8zP3qaEUIV5hPJhiGiLJO7k8p962MHWxIHDY1ZA=";
|
|
};
|
|
|
|
# jaxlib is _not_ included in propagatedBuildInputs because there are
|
|
# different versions of jaxlib depending on the desired target hardware. The
|
|
# JAX project ships separate wheels for CPU, GPU, and TPU.
|
|
propagatedBuildInputs = [
|
|
absl-py
|
|
etils
|
|
numpy
|
|
opt-einsum
|
|
scipy
|
|
typing-extensions
|
|
] ++ etils.optional-dependencies.epath;
|
|
|
|
nativeCheckInputs = [
|
|
jaxlib'
|
|
matplotlib
|
|
pytestCheckHook
|
|
pytest-xdist
|
|
];
|
|
|
|
# high parallelism will result in the tests getting stuck
|
|
dontUsePytestXdist = true;
|
|
|
|
# NOTE: Don't run the tests in the expiremental directory as they require flax
|
|
# which creates a circular dependency. See https://discourse.nixos.org/t/how-to-nix-ify-python-packages-with-circular-dependencies/14648/2.
|
|
# Not a big deal, this is how the JAX docs suggest running the test suite
|
|
# anyhow.
|
|
pytestFlagsArray = [
|
|
"--numprocesses=4"
|
|
"-W ignore::DeprecationWarning"
|
|
"tests/"
|
|
];
|
|
|
|
disabledTests = [
|
|
# Exceeds tolerance when the machine is busy
|
|
"test_custom_linear_solve_aux"
|
|
# UserWarning: Explicitly requested dtype <class 'numpy.float64'>
|
|
# requested in astype is not available, and will be truncated to
|
|
# dtype float32. (With numpy 1.24)
|
|
"testKde3"
|
|
"testKde5"
|
|
"testKde6"
|
|
] ++ lib.optionals usingMKL [
|
|
# 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
|
|
"test_custom_linear_solve_cholesky"
|
|
"test_custom_root_with_aux"
|
|
"testEigvalsGrad_shape"
|
|
] ++ lib.optionals stdenv.isAarch64 [
|
|
# See https://github.com/google/jax/issues/14793.
|
|
"test_for_loop_fixpoint_correctly_identifies_loop_varying_residuals_unrolled_for_loop"
|
|
"testQdwhWithRandomMatrix3"
|
|
"testScanGrad_jit_scan"
|
|
];
|
|
|
|
# See https://github.com/google/jax/issues/11722. This is a temporary fix in
|
|
# order to unblock etils, and upgrading jax/jaxlib to the latest version. See
|
|
# https://github.com/NixOS/nixpkgs/issues/183173#issuecomment-1204074993.
|
|
disabledTestPaths = [
|
|
"tests/api_test.py"
|
|
"tests/core_test.py"
|
|
"tests/lax_numpy_indexing_test.py"
|
|
"tests/lax_numpy_test.py"
|
|
"tests/nn_test.py"
|
|
"tests/random_test.py"
|
|
"tests/sparse_test.py"
|
|
] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
|
# RuntimeWarning: invalid value encountered in cast
|
|
"tests/lax_test.py"
|
|
];
|
|
|
|
# As of 0.3.22, `import jax` does not work without jaxlib being installed.
|
|
pythonImportsCheck = [ ];
|
|
|
|
meta = with lib; {
|
|
description = "Differentiate, compile, and transform Numpy code";
|
|
homepage = "https://github.com/google/jax";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ samuela ];
|
|
};
|
|
}
|