We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b4f87 commit b8366a1Copy full SHA for b8366a1
test/linalg/test_linalg_specialmatrices.fypp
@@ -45,20 +45,20 @@ contains
45
46
! Test y = A @ x
47
y1 = matmul(Amat, x) ; call spmv(A, x, y2)
48
- call check(error, all_close(y1, y2))
+ call check(error, all_close(y1, y2), .true.)
49
if (allocated(error)) return
50
51
! Test y = A.T @ x
52
y1 = 0.0_wp ; y2 = 0.0_wp
53
y1 = matmul(transpose(Amat), x) ; call spmv(A, x, y2, op="T")
54
55
56
57
#:if t1.startswith('complex')
58
! Test y = A.H @ x
59
60
y1 = matmul(hermitian(Amat), x) ; call spmv(A, x, y2, op="H")
61
62
63
#:endif
64
end block
0 commit comments