@@ -227,11 +227,19 @@ Random.seed!(100)
227227 @test_throws DimensionMismatch BLAS. symm (' R' ,' U' ,Cmn,Cnn)
228228 @test_throws DimensionMismatch BLAS. symm! (' L' ,' U' ,one (elty),Asymm,Cnn,one (elty),Cmn)
229229 @test_throws DimensionMismatch BLAS. symm! (' L' ,' U' ,one (elty),Asymm,Cnn,one (elty),Cnm)
230+ @test_throws DimensionMismatch BLAS. symm! (' L' ,' U' ,one (elty),Asymm,Cmn,one (elty),Cnn)
231+ @test_throws DimensionMismatch BLAS. symm! (' R' ,' U' ,one (elty),Asymm,Cnm,one (elty),Cmn)
232+ @test_throws DimensionMismatch BLAS. symm! (' R' ,' U' ,one (elty),Asymm,Cnn,one (elty),Cnm)
233+ @test_throws DimensionMismatch BLAS. symm! (' R' ,' U' ,one (elty),Asymm,Cmn,one (elty),Cnn)
230234 if elty <: BlasComplex
231235 @test_throws DimensionMismatch BLAS. hemm (' L' ,' U' ,Cnm,Cnn)
232236 @test_throws DimensionMismatch BLAS. hemm (' R' ,' U' ,Cmn,Cnn)
233237 @test_throws DimensionMismatch BLAS. hemm! (' L' ,' U' ,one (elty),Aherm,Cnn,one (elty),Cmn)
234238 @test_throws DimensionMismatch BLAS. hemm! (' L' ,' U' ,one (elty),Aherm,Cnn,one (elty),Cnm)
239+ @test_throws DimensionMismatch BLAS. hemm! (' L' ,' U' ,one (elty),Aherm,Cmn,one (elty),Cnn)
240+ @test_throws DimensionMismatch BLAS. hemm! (' R' ,' U' ,one (elty),Aherm,Cnm,one (elty),Cmn)
241+ @test_throws DimensionMismatch BLAS. hemm! (' R' ,' U' ,one (elty),Aherm,Cnn,one (elty),Cnm)
242+ @test_throws DimensionMismatch BLAS. hemm! (' R' ,' U' ,one (elty),Aherm,Cmn,one (elty),Cnn)
235243 end
236244 end
237245 end
0 commit comments