Skip to content

Commit 65c485e

Browse files
Don't cache numba function
1 parent 22578f3 commit 65c485e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytensor/link/numba/dispatch/slinalg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ def numba_funcify_BandedDot(op, node, **kwargs):
324324
if dtype in complex_dtypes:
325325
raise NotImplementedError(_COMPLEX_DTYPE_NOT_SUPPORTED_MSG.format(op=op))
326326

327-
@numba_njit
327+
@numba_njit(cache=False)
328328
def banded_dot(A, x):
329329
return _dot_banded(A, x, kl=kl, ku=ku)
330330

0 commit comments

Comments
 (0)