Skip to content

Commit

Permalink
P1673R6: Apply rank_2k fix from PR
Browse files Browse the repository at this point in the history
Apply fix from the following PR:

ORNL#184
  • Loading branch information
Mark Hoemmen committed Apr 15, 2022
1 parent 053d02b commit 8e5104c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions D1673/P1673.bs
Original file line number Diff line number Diff line change
Expand Up @@ -8884,7 +8884,7 @@ The BLAS "quick reference" has a typo; the "ALPHA" argument of
For `i,j` in the domain of `C`
and in the triangle of `C` specified by `t`,
the mathematical expression for the algorithm is
`C[i,j] = C[i,j]` plus the sum of `A[i,k] * B[j,k]`
`C[i,j] = C[i,j]` plus the sum of `A[i,k1] * B[j,k1]`
for all `k1` such that `i,k1` is in the domain of `A`,
plus the sum of `B[i,k2] * A[j,k2]`
for all `k2` such that `i,k2` is in the domain of `B`.
Expand Down Expand Up @@ -8962,7 +8962,7 @@ void hermitian_matrix_rank_2k_update(
For `i,j` in the domain of `C`
and in the triangle of `C` specified by `t`,
the mathematical expression for the algorithm is
`C[i,j] = C[i,j]` plus the sum of `A[i,k] * conj(B[j,k])`
`C[i,j] = C[i,j]` plus the sum of `A[i,k1] * conj(B[j,k1])`
for all `k1` such that `i,k1` is in the domain of `A`,
plus the sum of `B[i,k2] * conj(A[j,k2])`
for all `k2` such that `i,k2` is in the domain of `B`.
Expand Down

0 comments on commit 8e5104c

Please sign in to comment.