mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 15:14:13 +00:00
Merge pull request #331684 from GaetanLepage/torchrl
python311Packages.torhchrl: skip failing test
This commit is contained in:
commit
3ab390a13c
@ -154,14 +154,19 @@ buildPythonPackage rec {
|
|||||||
# undeterministic
|
# undeterministic
|
||||||
"test_distributed_collector_updatepolicy"
|
"test_distributed_collector_updatepolicy"
|
||||||
"test_timeit"
|
"test_timeit"
|
||||||
|
|
||||||
|
# On a 24
|
||||||
|
# assert torch.get_num_threads() == max(1, init_threads - 3)
|
||||||
|
# AssertionError: assert 23 == 21
|
||||||
|
"test_auto_num_threads"
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Modular, primitive-first, python-first PyTorch library for Reinforcement Learning";
|
description = "Modular, primitive-first, python-first PyTorch library for Reinforcement Learning";
|
||||||
homepage = "https://github.com/pytorch/rl";
|
homepage = "https://github.com/pytorch/rl";
|
||||||
changelog = "https://github.com/pytorch/rl/releases/tag/v${version}";
|
changelog = "https://github.com/pytorch/rl/releases/tag/v${version}";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ GaetanLepage ];
|
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||||
# ~3k tests fail with: RuntimeError: internal error
|
# ~3k tests fail with: RuntimeError: internal error
|
||||||
broken = stdenv.isLinux && stdenv.isAarch64;
|
broken = stdenv.isLinux && stdenv.isAarch64;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user