Skip to content

Commit aa7c9a9

Browse files
authored
Exclude local_careduce_fusion from Numba backend (#450)
1 parent ae0d79b commit aa7c9a9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

pytensor/compile/mode.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,10 @@ def clone(self, link_kwargs=None, optimizer="", **kwargs):
464464
)
465465
NUMBA = Mode(
466466
NumbaLinker(),
467-
RewriteDatabaseQuery(include=["fast_run"], exclude=["cxx_only", "BlasOpt"]),
467+
RewriteDatabaseQuery(
468+
include=["fast_run"],
469+
exclude=["cxx_only", "BlasOpt", "local_careduce_fusion"],
470+
),
468471
)
469472

470473

0 commit comments

Comments
 (0)