File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -59,10 +59,15 @@ def __getattr__(name):
59
59
"NUMBA_DPEX_DEBUGINFO" , int , config .DEBUGINFO_DEFAULT
60
60
)
61
61
62
- # Emit LLVM assembly language format(.ll)
63
- DUMP_KERNEL_LLVM = _readenv (
64
- "NUMBA_DPEX_DUMP_KERNEL_LLVM" , int , config .DUMP_OPTIMIZED
65
- )
62
+ # Emit LLVM IR generated for kernel decorated function
63
+ DUMP_KERNEL_LLVM = _readenv ("NUMBA_DPEX_DUMP_KERNEL_LLVM" , int , 0 )
64
+
65
+ # Emit LLVM module generated to launch a kernel decorated function
66
+ DUMP_KERNEL_LAUNCHER = _readenv ("NUMBA_DPEX_DUMP_KERNEL_LAUNCHER" , int , 0 )
67
+
68
+ # Enables debug printf messages inside the kernel launcher module generated for
69
+ # a kernel decorated function
70
+ DEBUG_KERNEL_LAUNCHER = _readenv ("NUMBA_DPEX_DEBUG_KERNEL_LAUNCHER" , int , 0 )
66
71
67
72
# configs for caching
68
73
# To see the debug messages for the caching.
You can’t perform that action at this time.
0 commit comments