1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-20 00:19:25 +03:00
nixpkgs/pkgs/development/python-modules/jax/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
2.1 KiB
Nix
Raw Normal View History

2021-11-09 15:07:43 +01:00
{ lib
, absl-py
, blas
2021-11-09 15:07:43 +01:00
, buildPythonPackage
, fetchFromGitHub
, jaxlib
, lapack
2021-11-09 15:07:43 +01:00
, numpy
, opt-einsum
, pytestCheckHook
2022-02-14 21:40:19 +00:00
, pytest-xdist
2021-11-09 15:07:43 +01:00
, pythonOlder
, scipy
, typing-extensions
2021-08-22 20:39:04 +00:00
}:
let
usingMKL = blas.implementation == "mkl" || lapack.implementation == "mkl";
in
2021-08-22 20:39:04 +00:00
buildPythonPackage rec {
pname = "jax";
2022-02-19 00:42:06 +00:00
version = "0.3.1";
2021-11-09 15:07:43 +01:00
format = "setuptools";
disabled = pythonOlder "3.7";
2021-08-22 20:39:04 +00:00
src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "${pname}-v${version}";
2022-02-19 00:42:06 +00:00
sha256 = "0bpqmyc4hg25i8cfnrx3y2bwgp6h5rri2a1q9i8gb6r0id97zvcn";
2021-08-22 20:39:04 +00:00
};
patches = [
# See https://github.com/google/jax/issues/7944
./cache-fix.patch
];
2021-08-22 20:39:04 +00:00
# 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. Currently only the
# CPU wheel is packaged.
2021-11-09 15:07:43 +01:00
propagatedBuildInputs = [
absl-py
numpy
opt-einsum
scipy
typing-extensions
];
checkInputs = [
jaxlib
pytestCheckHook
2022-02-14 21:40:19 +00:00
pytest-xdist
2021-11-09 15:07:43 +01:00
];
2021-08-22 20:39:04 +00:00
# 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.
2021-11-09 15:07:43 +01:00
pytestFlagsArray = [
2022-02-14 21:40:19 +00:00
"-n auto"
2021-11-09 15:07:43 +01:00
"-W ignore::DeprecationWarning"
"tests/"
];
# 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"
];
2021-11-09 15:07:43 +01:00
pythonImportsCheck = [
"jax"
];
2021-08-22 20:39:04 +00:00
meta = with lib; {
description = "Differentiate, compile, and transform Numpy code";
2021-11-09 15:07:43 +01:00
homepage = "https://github.com/google/jax";
license = licenses.asl20;
2021-08-22 20:39:04 +00:00
maintainers = with maintainers; [ samuela ];
};
}