mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
ff94bb4ba6
Diff: 4b94370b8d
...v0.0.4
Changelog: https://github.com/deepmind/jmp/releases/tag/v0.0.4
41 lines
769 B
Nix
41 lines
769 B
Nix
{ buildPythonPackage
|
|
, fetchFromGitHub
|
|
, jax
|
|
, jaxlib
|
|
, lib
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jmp";
|
|
version = "0.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deepmind";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-+PefZU1209vvf1SfF8DXiTvKYEnZ4y8iiIr8yKikx9Y=";
|
|
};
|
|
|
|
# Wheel requires only `numpy`, but the import needs `jax`.
|
|
propagatedBuildInputs = [
|
|
jax
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"jmp"
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
jaxlib
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "This library implements support for mixed precision training in JAX.";
|
|
homepage = "https://github.com/deepmind/jmp";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ndl ];
|
|
};
|
|
}
|