Skip to content

Commit 8294980

Browse files
committed
Make zips strict in pytensor/misc
1 parent ea7e547 commit 8294980

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytensor/misc/check_blas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def execute(execute=True, verbose=True, M=2000, N=2000, K=2000, iters=10, order=
5959
if any(x.op.__class__.__name__ == "Gemm" for x in f.maker.fgraph.toposort()):
6060
c_impl = [
6161
hasattr(thunk, "cthunk")
62-
for node, thunk in zip(f.vm.nodes, f.vm.thunks)
62+
for node, thunk in zip(f.vm.nodes, f.vm.thunks, strict=True)
6363
if node.op.__class__.__name__ == "Gemm"
6464
]
6565
assert len(c_impl) == 1

0 commit comments

Comments
 (0)