Skip to content

Commit bc032b4

Browse files
committed
code review feedback - update wording
1 parent cd3a91c commit bc032b4

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

proposals/0035-linalg-matrix.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1078,9 +1078,9 @@ linalg::Multiply(Matrix<MatrixDT, M, K, MatrixUse::A, MatrixScope::Thread> Matri
10781078

10791079
Requires `Thread` scope matrix input, may be called from divergent control flow.
10801080

1081-
The `linalg::Multiply` function has an takes an MxK `A` matrix with `Thread`
1082-
scope, an `K`-element vector `Vec`. The operation multiplies the matrix by the
1083-
`K`-element vector `Vec` producing a result `M`-element vector.
1081+
The `linalg::Multiply` function has an overload that takes an MxK `A` matrix
1082+
with `Thread` scope, a `K`-element vector `Vec`. The operation multiplies the
1083+
matrix by the `K`-element vector `Vec` producing a result `M`-element vector.
10841084

10851085
#### linalg::OuterProduct(vector, vector)
10861086

@@ -1109,7 +1109,7 @@ linalg::MultiplyAdd(Matrix<MatrixDT, M, K, MatrixUse::A, MatrixScope::Thread> Ma
11091109
Requires `Thread` scope matrix input, may be called from divergent control flow.
11101110

11111111
The `linalg::MultiplyAdd` function has an overload that takes an MxK `A` matrix
1112-
with `Thread` scope, an `K`-element vector `Vec`, and a `M`-element vector
1112+
with `Thread` scope, a `K`-element vector `Vec`, and a `M`-element vector
11131113
`Bias`. The operation multiplies the matrix by the `K`-element vector `Vec` and
11141114
then adds the `M`-element vector `Bias` producing a result `M`-element vector.
11151115

0 commit comments

Comments
 (0)