Skip to content

Commit 1b92f9f

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into stats-strided-ztest2
2 parents b4381cb + 3687841 commit 1b92f9f

File tree

350 files changed

+11189
-714
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

350 files changed

+11189
-714
lines changed

lib/node_modules/@stdlib/blas/base/caxpy/manifest.json

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,16 @@
191191
"libpath": [],
192192
"dependencies": [
193193
"@stdlib/blas/base/shared",
194+
"@stdlib/blas/base/scabs1",
195+
"@stdlib/strided/base/stride2offset",
194196
"@stdlib/napi/export",
195-
"@stdlib/strided/base/min-view-buffer-index",
196197
"@stdlib/napi/argv",
197198
"@stdlib/napi/argv-int64",
198199
"@stdlib/napi/argv-strided-complex64array",
199200
"@stdlib/napi/argv-complex64",
200-
"@stdlib/complex/float32/ctor"
201+
"@stdlib/complex/float32/ctor",
202+
"@stdlib/complex/float32/base/add",
203+
"@stdlib/complex/float32/base/mul"
201204
]
202205
},
203206
{
@@ -218,14 +221,9 @@
218221
"@stdlib/blas/base/shared",
219222
"@stdlib/blas/base/scabs1",
220223
"@stdlib/strided/base/stride2offset",
221-
"@stdlib/napi/export",
222-
"@stdlib/napi/argv",
223-
"@stdlib/napi/argv-int64",
224-
"@stdlib/napi/argv-strided-complex64array",
225-
"@stdlib/napi/argv-complex64",
226-
"@stdlib/complex/float32/ctor",
227224
"@stdlib/complex/float32/base/add",
228-
"@stdlib/complex/float32/base/mul"
225+
"@stdlib/complex/float32/base/mul",
226+
"@stdlib/complex/float32/ctor"
229227
]
230228
},
231229
{

lib/node_modules/@stdlib/blas/base/dger/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ The function has the following parameters:
5757
- **M**: number of rows in the matrix `A`.
5858
- **N**: number of columns in the matrix `A`.
5959
- **α**: scalar constant.
60-
- **x**: input [`Float64Array`][mdn-float64array].
60+
- **x**: an `M` element [`Float64Array`][mdn-float64array].
6161
- **sx**: stride length for `x`.
62-
- **y**: output [`Float64Array`][mdn-float64array].
62+
- **y**: an `N` element [`Float64Array`][mdn-float64array].
6363
- **sy**: stride length for `y`.
6464
- **A**: input matrix stored in linear memory as a [`Float64Array`][mdn-float64array].
6565
- **lda**: stride of the first dimension of `A` (leading dimension of `A`).
@@ -208,7 +208,7 @@ console.log(A);
208208

209209
#### c_dger( layout, M, N, alpha, \*X, strideX, \*Y, strideY, \*A, LDA )
210210

211-
Performs the rank 1 operation `A = alpha*x*y^T + A`, where `alpha` is a scalar, `x` is an `M` element vector, `y` is an `N` element vector, and `A` is an `M`-by-`N` matrix.
211+
Performs the rank 1 operation `A = alpha*x*y^T + A`, where `alpha` is a scalar, `X` is an `M` element vector, `Y` is an `N` element vector, and `A` is an `M`-by-`N` matrix.
212212

213213
```c
214214
#include "stdlib/blas/base/shared.h"
@@ -244,7 +244,7 @@ void c_dger( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, co
244244

245245
#### c_dger_ndarray( M, N, alpha, \*X, sx, ox, \*Y, sy, oy, \*A, sa1, sa2, oa )
246246

247-
Performs the rank 1 operation `A = alpha*x*y^T + A`, using alternative indexing semantics and where `alpha` is a scalar, `x` is an `M` element vector, `y` is an `N` element vector, and `A` is an `M`-by-`N` matrix.
247+
Performs the rank 1 operation `A = alpha*x*y^T + A`, using alternative indexing semantics and where `alpha` is a scalar, `X` is an `M` element vector, `Y` is an `N` element vector, and `A` is an `M`-by-`N` matrix.
248248

249249
```c
250250
#include "stdlib/blas/base/shared.h"

lib/node_modules/@stdlib/blas/base/dger/lib/dger.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var addon = require( './../src/addon.node' );
3333
/**
3434
* Performs the rank 1 operation `A = α*x*y^T + A`, where `α` is a scalar, `x` is an `M` element vector, `y` is an `N` element vector, and `A` is an `M` by `N` matrix.
3535
*
36-
* @param {*} order - storage layout
36+
* @param {string} order - storage layout
3737
* @param {NonNegativeInteger} M - number of rows in the matrix `A`
3838
* @param {NonNegativeInteger} N - number of columns in the matrix `A`
3939
* @param {number} alpha - scalar constant

lib/node_modules/@stdlib/blas/base/dger/src/dger_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
* @param strideY stride length for `Y`
9999
* @param offsetY starting index for `Y`
100100
* @param A matrix of coefficients
101-
* @param strideA1 stride length of the first dimnension of `A`
101+
* @param strideA1 stride length of the first dimension of `A`
102102
* @param strideA2 stride length of the second dimension of `A`
103103
* @param offsetA starting index for `A`
104104
*/

0 commit comments

Comments
 (0)