Skip to content

Commit a46adc8

Browse files
committed
Fixed typo
1 parent e1fed99 commit a46adc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/link/pytorch/test_blas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ def test_pytorch_BatchedDot():
3131
inputs = [get_test_value(a)[:-1], get_test_value(b)]
3232
opts = RewriteDatabaseQuery(include=[None], exclude=["cxx_only", "BlasOpt"])
3333
pytorch_mode = Mode(PytorchLinker(), opts)
34-
pytensor_jax_fn = function(fgraph.inputs, fgraph.outputs, mode=pytorch_mode)
34+
pytensor_pytorch_fn = function(fgraph.inputs, fgraph.outputs, mode=pytorch_mode)
3535
with pytest.raises(TypeError):
36-
pytensor_jax_fn(*inputs)
36+
pytensor_pytorch_fn(*inputs)

0 commit comments

Comments
 (0)