From 0fc3f32b0e44b5c1a83c4750e674ed7f26220fb5 Mon Sep 17 00:00:00 2001 From: Rui Luo Date: Thu, 13 Aug 2026 20:29:36 +0800 Subject: [PATCH] test: skip LatchKernel event test without __nanosleep --- cuda_core/tests/test_event.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cuda_core/tests/test_event.py b/cuda_core/tests/test_event.py index 79f0090ace6..3e765a9e0d0 100644 --- a/cuda_core/tests/test_event.py +++ b/cuda_core/tests/test_event.py @@ -222,6 +222,7 @@ def test_event_ipc_descriptor_non_ipc(init_cuda): _ = event.ipc_descriptor +@pytest.mark.skipif(Device().compute_capability.major < 7, reason="__nanosleep is only available starting Volta (sm70)") def test_event_is_done_false(init_cuda): """Event.is_done returns False when captured work has not yet completed.""" device = Device()