缓存 numba 函数会导致错误
Caching of numba functions leads to error
每当我在函数上使用缓存时,..
@jit(cache=True)
def test(x):
return x
.. 我得到一个类似于 ..
的 RuntimeError
RuntimeError: cannot cache function 'test.test': no locator available for file '/tmp/ipykernel_3392909/373547737.py'
.. 是的,/tmp
应该是可写的 (rwxrwxrwt
).
这里发生了什么?
每当我在函数上使用缓存时,..
@jit(cache=True)
def test(x):
return x
.. 我得到一个类似于 ..
的 RuntimeErrorRuntimeError: cannot cache function 'test.test': no locator available for file '/tmp/ipykernel_3392909/373547737.py'
.. 是的,/tmp
应该是可写的 (rwxrwxrwt
).
这里发生了什么?