-
Notifications
You must be signed in to change notification settings - Fork 0
Numba FAQ
Sylwester Arabas edited this page May 10, 2023
·
3 revisions
How to profile Numba code?
We do not know!
Related StackOverflow questions:
- https://stackoverflow.com/questions/54545511/using-line-profiler-with-numba-jitted-functions
- https://stackoverflow.com/questions/55213687/python-how-to-profile-code-written-with-numba-njit-decorators
How to disable the JIT compilation?
Set the NUMBA_DISABLE_JIT
env var to 1
, e.g. a good starting point for debugging tests would be:
NUMBA_DISABLE_JIT=1 pytest -We tests