Skip to content

Commit

Permalink
fix(numba): Remove useless blockwise in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aseyboldt authored and ricardoV94 committed Jun 11, 2024
1 parent d92c367 commit dbe0e09
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/link/numba/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,12 @@ def perform(self, node, inputs, outputs):
my_multi_out.ufunc = MyMultiOut.impl
my_multi_out.ufunc.nin = 2
my_multi_out.ufunc.nout = 2
opts = RewriteDatabaseQuery(include=[None], exclude=["cxx_only", "BlasOpt"])
numba_mode = Mode(NumbaLinker(), opts.including("numba"))
opts = RewriteDatabaseQuery(
include=[None], exclude=["cxx_only", "BlasOpt", "local_careduce_fusion"]
)
numba_mode = Mode(
NumbaLinker(), opts.including("numba", "local_useless_unbatched_blockwise")
)
py_mode = Mode("py", opts)

rng = np.random.default_rng(42849)
Expand Down

0 comments on commit dbe0e09

Please sign in to comment.