c6ca5b8f13
GitOrigin-RevId: e4d49de45a3b5dbcb881656b4e3986e666141ea9
57 lines
998 B
Nix
57 lines
998 B
Nix
{ absl-py
|
|
, buildPythonPackage
|
|
, chex
|
|
, fetchFromGitHub
|
|
, jaxlib
|
|
, lib
|
|
, numpy
|
|
, callPackage
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "optax";
|
|
version = "0.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deepmind";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-XAYztMBQpLBHNuNED/iodbwIMJSN/0GxdmTGQ5jD9Ws=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"testsout"
|
|
];
|
|
|
|
buildInputs = [ jaxlib ];
|
|
|
|
propagatedBuildInputs = [
|
|
absl-py
|
|
chex
|
|
numpy
|
|
];
|
|
|
|
postInstall = ''
|
|
mkdir $testsout
|
|
cp -R examples $testsout/examples
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"optax"
|
|
];
|
|
|
|
# check in passthru.tests.pytest to escape infinite recursion with flax
|
|
doCheck = false;
|
|
|
|
passthru.tests = {
|
|
pytest = callPackage ./tests.nix { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Optax is a gradient processing and optimization library for JAX.";
|
|
homepage = "https://github.com/deepmind/optax";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ndl ];
|
|
};
|
|
}
|