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

Commit 04859ca

Browse files
authored
Patch for config options (#93)
This config options could be moved to extension. But if we want to access some config options via numba.config then Numba should provide extension point for this.
1 parent 945bc46 commit 04859ca

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

numba/core/config.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,6 @@ def optional_str(x):
222222
DUMP_SSA = _readenv("NUMBA_DUMP_SSA", int,
223223
DEBUG_FRONTEND or DEBUG_TYPEINFER)
224224

225-
# Save intermediate files being generated by DPPL
226-
SAVE_DPPL_IR_FILES = _readenv("NUMBA_SAVE_DPPL_IR_FILES", int, 0)
227-
228-
# Turn SPIRV-VALIDATION ON/OFF switch
229-
SPIRV_VAL = _readenv("NUMBA_SPIRV_VAL", int, 0)
230-
231225
# print debug info of analysis and optimization on array operations
232226
DEBUG_ARRAY_OPT = _readenv("NUMBA_DEBUG_ARRAY_OPT", int, 0)
233227

0 commit comments

Comments
 (0)