Skip to content

Commit fcc64ca

Browse files
authored
Merge pull request rapidsai#20033 from rapidsai/branch-25.10
Forward-merge branch-25.10 into branch-25.12
2 parents ad95c60 + 1f0d4ff commit fcc64ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cudf/cudf/core/udf/nrt_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def nrt_enabled():
3737
for a single kernel launch, so we use this context
3838
to enable it for those that we know need it.
3939
"""
40-
original_value = numba_config.CUDA_ENABLE_NRT
40+
original_value = getattr(numba_config, "CUDA_ENABLE_NRT", False)
4141
numba_config.CUDA_ENABLE_NRT = True
4242
try:
4343
yield

0 commit comments

Comments
 (0)