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

Commit 5a1b372

Browse files
committed
Uncomment require_global_compiler_lock() (#120)
This line was commented when introduced codegen debugging by @DrTodd13. Uncommenting this line requires modifications in numba-dppy. It seems that numba-dppy compilation does not work correctly with global compiler lock.
1 parent 00e056e commit 5a1b372

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numba/core/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def finalize(self):
220220
Finalization involves various stages of code optimization and
221221
linking.
222222
"""
223-
require_global_compiler_lock()
223+
#require_global_compiler_lock()
224224

225225
# Report any LLVM-related problems to the user
226226
self._codegen._check_llvm_bugs()

0 commit comments

Comments
 (0)