Skip to content

Commit 2f749c4

Browse files
authored
add mising dims
1 parent 5b0333d commit 2f749c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/rulesets/LinearAlgebra/blas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
end
6565

6666
@testset "gemm" begin
67-
for m in dims, n in 3:5, p in 3:5, tA in ('N', 'C', 'T'), tB in ('N', 'C', 'T'), T in (Float64, ComplexF64)
67+
for m in 3:5, n in 3:5, p in 3:5, tA in ('N', 'C', 'T'), tB in ('N', 'C', 'T'), T in (Float64, ComplexF64)
6868
A = randn(T, tA === 'N' ? (m, n) : (n, m))
6969
B = randn(T, tB === 'N' ? (n, p) : (p, n))
7070
test_rrule(gemm, tA nothing, tB nothing, A, B; check_inferred=false)

0 commit comments

Comments
 (0)