We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad7ccb commit a1025c4Copy full SHA for a1025c4
1 file changed
cuda_core/tests/example_tests/test_basic_examples.py
@@ -13,6 +13,7 @@
13
import pytest
14
15
from cuda.core import Device, ManagedMemoryResource, system
16
+from cuda.core._program import _can_load_generated_ptx
17
18
try:
19
from cuda.bindings._test_helpers.pep723 import has_package_requirements_or_skip
@@ -82,6 +83,7 @@ def has_recent_memory_pool_support() -> bool:
82
83
SYSTEM_REQUIREMENTS = {
84
"memory_pool_resources.py": has_recent_memory_pool_support,
85
"gl_interop_plasma.py": has_display,
86
+ "jit_lto_fractal.py": _can_load_generated_ptx,
87
"pytorch_example.py": lambda: (
88
has_compute_capability_9_or_higher() and is_x86_64()
89
), # PyTorch only provides CUDA support for x86_64
0 commit comments