Skip to content

Commit 804fe1e

Browse files
matteoseclimaleadt
authored andcommitted
Fix typo
1 parent 01f436c commit 804fe1e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/libraries/cusolver/dense.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ k = 1
345345
@test Eig.values collect(d_eig.values)
346346
h_V = collect(d_eig.vectors)
347347
h_V⁻¹ = inv(h_V)
348-
@test abs.(Eig.vectors*h_V⁻¹) I
348+
@test abs.(h_V⁻¹*Eig.vectors) I
349349

350350
A = rand(elty,m,m)
351351
d_A = CuArray(A)
@@ -358,7 +358,7 @@ k = 1
358358
V = eigvecs(A)
359359
d_V = eigvecs(d_A)
360360
V⁻¹ = inv(V)
361-
@test abs.(collect(d_V)*V⁻¹) I
361+
@test abs.(V⁻¹*collect(d_V)) I
362362
end
363363

364364
@testset "syevd!" begin

0 commit comments

Comments
 (0)