We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e8f659 commit e53e9beCopy full SHA for e53e9be
pkgs/development/python-modules/tensordict/default.nix
@@ -72,6 +72,9 @@ buildPythonPackage rec {
72
73
# torch._dynamo.exc.InternalTorchDynamoError: RuntimeError: to_module requires TORCHDYNAMO_INLINE_INBUILT_NN_MODULES to be set.
74
"test_functional"
75
+
76
+ # hangs forever on some CPUs
77
+ "test_map_iter_interrupt_early"
78
]
79
++ lib.optionals (stdenv.hostPlatform.system == "aarch64-linux") [
80
# RuntimeError: internal error
@@ -81,9 +84,6 @@ buildPythonPackage rec {
81
84
82
85
# _queue.Empty errors in multiprocessing tests
83
86
"test_isend"
-
- # hangs forever
- "test_map_iter_interrupt_early"
87
];
88
89
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
0 commit comments