We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6034b24 commit af0e03aCopy full SHA for af0e03a
1 file changed
cuda_python_test_helpers/cuda_python_test_helpers/managed_memory.py
@@ -51,6 +51,8 @@ def _get_concurrent_managed_access(device_id: int) -> int | None:
51
52
def managed_memory_skip_reason(device=None) -> str | None:
53
"""Return a skip reason when managed memory should be avoided."""
54
+ # Negative test: disable skipping regardless of concurrent managed access.
55
+ return None
56
device_id = _resolve_device_id(device)
57
value = _get_concurrent_managed_access(device_id)
58
if value is None:
0 commit comments