reloadware / reloadium

Hot Reloading and Profiling for Python
https://reloadium.io
Apache License 2.0
2.74k stars 56 forks source link

Not support numba #167

Closed papari1123 closed 7 months ago

papari1123 commented 9 months ago

Describe the bug*

When I run Reloadium in debug mode with Numba's njit mode, an UnsupportedError occurs. If I run Reloadium in either the running mode or normal debugging mode, no exceptions occur.

To Reproduce

first, install numba

pip install numba

copy code below, and just run reloadium in debug mode.

from numba import njit

@njit(cache=False)
def njit_test(tt):
    print(tt)

njit_test('hello')

Expected behavior

no exceptions occur even during reloadium debugging mode with njit.

Screenshots

image

Desktop or remote (please complete the following information):**

dkrystki commented 7 months ago

Added in Reloadium 1.3.2 and PyCharm plugin 1.3.2