Skip to content

Add error log producing test #423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Mar 3, 2025
Merged
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions cuda_core/tests/test_linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

from cuda.core.experimental import Device, Linker, LinkerOptions, Program, ProgramOptions, _linker
from cuda.core.experimental._module import ObjectCode
from cuda.core.experimental._utils import CUDAError

ARCH = "sm_" + "".join(f"{i}" for i in Device().compute_capability)

Expand All @@ -18,9 +19,17 @@
device_function_c = "__device__ int C(int a, int b) { return a + b; }"

culink_backend = _linker._decide_nvjitlink_or_driver()


class nvJitLinkError_(Exception):
pass


if not culink_backend:
from cuda.bindings import nvjitlink

nvJitLinkError_ = nvjitlink.nvJitLinkError


@pytest.fixture(scope="function")
def compile_ptx_functions(init_cuda):
Expand Down Expand Up @@ -126,10 +135,23 @@ def test_linker_link_invalid_target_type(compile_ptx_functions):

def test_linker_get_error_log(compile_ptx_functions):
options = LinkerOptions(arch=ARCH)
linker = Linker(*compile_ptx_functions, options=options)
linker.link("cubin")
log = linker.get_error_log()
assert isinstance(log, str)

replacement_kernel = """
extern __device__ int Z();
extern __device__ int C(int a, int b);
__global__ void A() { int result = C(Z(), 1);}
"""
dummy_program = Program(replacement_kernel, "c++", ProgramOptions(relocatable_device_code=True)).compile("ptx")
linker = Linker(dummy_program, *(compile_ptx_functions[1:]), options=options)
try:
linker.link("cubin")

except (nvJitLinkError_, CUDAError):
log = linker.get_error_log()
assert isinstance(log, str)
# TODO when 4902246 is addressed, we can update this to cover nvjitlink as well
if culink_backend:
assert log.rstrip("\x00") == "error : Undefined reference to '_Z1Zv' in 'None_ptx'"


def test_linker_get_info_log(compile_ptx_functions):
Expand Down