2024-01-25 14:12:00 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchFromGitHub
|
|
|
|
, setuptools
|
|
|
|
, torch
|
|
|
|
, wheel
|
|
|
|
, which
|
|
|
|
, cloudpickle
|
|
|
|
, numpy
|
|
|
|
, h5py
|
|
|
|
, pytestCheckHook
|
2024-02-29 20:09:43 +00:00
|
|
|
, stdenv
|
2024-01-25 14:12:00 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "tensordict";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "0.3.1";
|
2024-01-25 14:12:00 +00:00
|
|
|
pyproject = true;
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pytorch";
|
|
|
|
repo = "tensordict";
|
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-eCx1r7goqOdGX/0mSGCiLhdGQTh4Swa5aFiLSsL56p0=";
|
2024-01-25 14:12:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
torch
|
|
|
|
wheel
|
|
|
|
which
|
|
|
|
];
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cloudpickle
|
|
|
|
numpy
|
|
|
|
torch
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"tensordict"
|
|
|
|
];
|
|
|
|
|
|
|
|
# We have to delete the source because otherwise it is used instead of the installed package.
|
|
|
|
preCheck = ''
|
|
|
|
rm -rf tensordict
|
|
|
|
'';
|
|
|
|
|
|
|
|
nativeCheckInputs = [
|
|
|
|
h5py
|
|
|
|
pytestCheckHook
|
|
|
|
];
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
# RuntimeError: internal error
|
|
|
|
disabledTests = lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [
|
|
|
|
"test_add_scale_sequence"
|
|
|
|
"test_modules"
|
|
|
|
"test_setattr"
|
|
|
|
];
|
|
|
|
|
|
|
|
# ModuleNotFoundError: No module named 'torch._C._distributed_c10d'; 'torch._C' is not a package
|
|
|
|
disabledTestPaths = lib.optionals stdenv.isDarwin [
|
|
|
|
"test/test_distributed.py"
|
|
|
|
];
|
|
|
|
|
2024-01-25 14:12:00 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A pytorch dedicated tensor container";
|
|
|
|
changelog = "https://github.com/pytorch/tensordict/releases/tag/v${version}";
|
|
|
|
homepage = "https://github.com/pytorch/tensordict";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ GaetanLepage ];
|
|
|
|
};
|
|
|
|
}
|