python3Packages.jmp: init at unstable-2021-10-03 (#152972)

This commit is contained in:
Alexander Tsvyashchenko 2022-01-01 22:35:46 +01:00 committed by GitHub
parent 7a1f9c8908
commit 44866de4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,42 @@
{ buildPythonPackage
, fetchFromGitHub
, jax
, jaxlib
, lib
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "jmp";
# As of 2022-01-01, the latest stable version (0.0.2) fails tests with recent JAX versions,
# IIUC it's fixed in https://github.com/deepmind/jmp/commit/4969392f618d7733b265677143d8c81e44085867
version = "unstable-2021-10-03";
src = fetchFromGitHub {
owner = "deepmind";
repo = pname;
rev = "4b94370b8de29b79d6f840b09d1990b91c1afddd";
sha256 = "0hh4cmp93wjyidj48gh07vhx2kjvpwd23xvy79bsjn5qaaf6q4cm";
};
# Wheel requires only `numpy`, but the import needs both `jax` and `jaxlib`.
propagatedBuildInputs = [
jax
jaxlib
];
pythonImportsCheck = [
"jmp"
];
checkInputs = [
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 ];
};
}

View File

@ -4119,6 +4119,8 @@ in {
jmespath = callPackage ../development/python-modules/jmespath { };
jmp = callPackage ../development/python-modules/jmp { };
joblib = callPackage ../development/python-modules/joblib { };
johnnycanencrypt = callPackage ../development/python-modules/johnnycanencrypt {