Skip to content

Commit 5f992b7

Browse files
authored
Update the unit tests on Mac (#1016)
1 parent 3a8fd07 commit 5f992b7

File tree

4 files changed

+142
-48
lines changed

4 files changed

+142
-48
lines changed

src/block_krylov_utils.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function mgs!(Q::AbstractMatrix{FC}, R::AbstractMatrix{FC}) where FC <: FloatOrC
6161
for i = 1:k
6262
qᵢ = view(Q,:,i)
6363
R[i,i] = knorm(n, qᵢ) # rᵢᵢ = ‖qᵢ‖
64-
qᵢ ./= R[i,i] # qᵢ = qᵢ / rᵢᵢ
64+
qᵢ ./= R[i,i] # qᵢ = qᵢ / rᵢᵢ
6565
for j = i+1:k
6666
qⱼ = view(Q,:,j)
6767
R[i,j] = kdot(n, qᵢ, qⱼ) # rᵢⱼ = ⟨qᵢ , qⱼ⟩

0 commit comments

Comments
 (0)