Skip to content

Commit

Permalink
adding new env variable NUMBA_DPEX_DUMP_KERNEL_LLVM and using it to d…
Browse files Browse the repository at this point in the history
…ump LLVM assembly
  • Loading branch information
adarshyoga committed Feb 23, 2023
1 parent 1dbebe3 commit eee597b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion numba_dpex/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ def __getattr__(name):
)

# Emit LLVM assembly language format(.ll)
DUMP_KERNEL_LLVM = _readenv("NUMBA_DPEX_DUMP_KERNEL_LLVM", int, config.DUMP_OPTIMIZED)
DUMP_KERNEL_LLVM = _readenv(
"NUMBA_DPEX_DUMP_KERNEL_LLVM", int, config.DUMP_OPTIMIZED
)

# configs for caching
# To see the debug messages for the caching.
Expand Down

0 comments on commit eee597b

Please sign in to comment.