You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/dgemm/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,12 +55,12 @@ The function has the following parameters:
55
55
-**K**: number of columns in the matrix `op(A)` and number of rows in the matrix `op(B)`.
56
56
-**α**: scalar constant.
57
57
-**A**: first input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
58
-
-**lda**: stride of the first dimension of `A` (leading dimension of `A`).
58
+
-**lda**: stride between successive contiguous vectors of the matrix `A` (a.k.a., leading dimension of `A`).
59
59
-**B**: second input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
60
-
-**ldb**: stride of the first dimension of `B` (leading dimension of `B`).
60
+
-**ldb**: stride between successive contiguous vectors of the matrix `B` (a.k.a., leading dimension of `B`).
61
61
-**β**: scalar constant.
62
62
-**C**: third input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
63
-
-**ldc**: stride of the first dimension of `C` (leading dimension of `C`).
63
+
-**ldc**: stride between successive contiguous vectors of the matrix `C` (a.k.a., leading dimension of `C`).
64
64
65
65
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to perform matrix multiplication of two subarrays
0 commit comments