Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Extension point: numba config options #93

Merged
merged 1 commit into from
Nov 18, 2020
Merged
Changes from all 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
6 changes: 0 additions & 6 deletions numba/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,6 @@ def optional_str(x):
DUMP_SSA = _readenv("NUMBA_DUMP_SSA", int,
DEBUG_FRONTEND or DEBUG_TYPEINFER)

# Save intermediate files being generated by DPPL
SAVE_DPPL_IR_FILES = _readenv("NUMBA_SAVE_DPPL_IR_FILES", int, 0)

# Turn SPIRV-VALIDATION ON/OFF switch
SPIRV_VAL = _readenv("NUMBA_SPIRV_VAL", int, 0)

# print debug info of analysis and optimization on array operations
DEBUG_ARRAY_OPT = _readenv("NUMBA_DEBUG_ARRAY_OPT", int, 0)

Expand Down