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.
2 parents 213baf4 + 7bc3604 commit 2ab5d3dCopy full SHA for 2ab5d3d
cuda_core/tests/test_module.py
@@ -11,7 +11,9 @@
11
from cuda.core.experimental._module import Kernel, ObjectCode
12
from cuda.core.experimental._utils import handle_return
13
import pytest
14
+import importlib
15
16
+@pytest.mark.skipif(int(importlib.metadata.version("cuda-python").split(".")[0]) < 12, reason='Module loading for older drivers validate require valid module code.')
17
def test_object_code_initialization():
18
# Test with supported code types
19
for code_type in ["cubin", "ptx", "fatbin"]:
0 commit comments