File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -350,10 +350,10 @@ end
350
350
let D1 = Diagonal (rand (5 )), D2 = Diagonal (rand (5 ))
351
351
@test LinAlg. mul1! (copy (D1),D2) == D1* D2
352
352
@test LinAlg. mul2! (D1,copy (D2)) == D1* D2
353
- @test LinAlg. mul1! (copy (D1),D2) == D1* D2
354
- @test LinAlg. mul2! (D1 ,copy (D2)) == D1 * D2
355
- @test LinAlg. mul1! (copy (D1),D2) == D1* D2
356
- @test LinAlg. mul2! (D1 ,copy (D2)) == D1 * D2
353
+ @test LinAlg. mul1! (copy (D1),transpose ( D2)) == D1* transpose (D2)
354
+ @test LinAlg. mul2! (transpose (D1) ,copy (D2)) == transpose (D1) * D2
355
+ @test LinAlg. mul1! (copy (D1),adjoint ( D2)) == D1* adjoint (D2)
356
+ @test LinAlg. mul2! (adjoint (D1) ,copy (D2)) == adjoint (D1) * D2
357
357
end
358
358
359
359
@testset " multiplication of QR Q-factor and Diagonal (#16615 spot test)" begin
Original file line number Diff line number Diff line change 494
494
let n = 5
495
495
A = rand (Float16, n, n)
496
496
B = rand (Float16, n- 1 , n- 1 )
497
-
498
497
@test_throws DimensionMismatch rdiv! (A, LowerTriangular (B))
499
498
@test_throws DimensionMismatch rdiv! (A, UpperTriangular (B))
500
499
@test_throws DimensionMismatch rdiv! (A, UnitLowerTriangular (B))
You can’t perform that action at this time.
0 commit comments