Skip to content

Commit e5f9c8e

Browse files
committed
test scale! and A_mul_Bt! with non square
1 parent 393a93f commit e5f9c8e

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/testsuite/blas.jl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ function run_blas(Typ)
99
against_base(*, T, (5, 5), (5, 5))
1010
against_base(*, T, (5, 5), (5))
1111
against_base(A_mul_Bt, T, (5, 5), (5, 5))
12+
against_base(A_mul_Bt!, T, (10, 32), (10, 60), (32, 60))
1213
against_base(At_mul_B, T, (5, 5), (5, 5))
1314
end
14-
# for T in (Complex64, Float32)
15-
# @testset "scale!" begin
16-
# against_base(scale!, Typ{T}, (13, 23), 77f0)
17-
# end
18-
# end
15+
for T in (Complex64, Float32)
16+
@testset "scale! $T" begin
17+
against_base(scale!, Typ{T}, (13, 23), 77f0)
18+
end
19+
end
1920
end
2021
end

0 commit comments

Comments
 (0)