Skip to content

Commit 0d1cee7

Browse files
authored
Merge pull request #17327 from JuliaLang/sjk/rm-matmul-test
Remove test for #14722 (type instability in generic matmul)
2 parents efa23ad + 0153e7d commit 0d1cee7

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/linalg/matmul.jl

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -388,15 +388,3 @@ let
388388
@test_throws DimensionMismatch A_mul_B!(full43, full43, tri44)
389389
end
390390
end
391-
392-
# Ensure that matrix multiplication with a narrower output type than input type does not
393-
# produce allocation in the inner loop (#14722), by ensuring allocation does not change
394-
# with the size of the input.
395-
C1 = Array(Float32, 5, 5)
396-
A1 = rand(Float64, 5, 5)
397-
B1 = rand(Float64, 5, 5)
398-
C2 = Array(Float32, 6, 6)
399-
A2 = rand(Float64, 6, 6)
400-
B2 = rand(Float64, 6, 6)
401-
A_mul_B!(C1, A1, B1)
402-
@test @allocated(A_mul_B!(C1, A1, B1)) == @allocated(A_mul_B!(C2, A2, B2))

0 commit comments

Comments
 (0)