Skip to content

Commit 92a2f54

Browse files
Merge branch 'develop' into shubham2204-tcoshf
2 parents c55f02e + 69ccb2a commit 92a2f54

File tree

136 files changed

+12807
-128
lines changed

Some content is hidden

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

136 files changed

+12807
-128
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ The function has the following parameters:
5555
- **K**: number of columns in the matrix `op(A)` and number of rows in the matrix `op(B)`.
5656
- **α**: scalar constant.
5757
- **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`).
5959
- **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`).
6161
- **β**: scalar constant.
6262
- **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`).
6464

6565
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to perform matrix multiplication of two subarrays
6666

lib/node_modules/@stdlib/blas/base/dgemm/docs/repl.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@
4343
First matrix.
4444

4545
lda: integer
46-
Stride of the first dimension of `A` (a.k.a., leading dimension of the
47-
matrix `A`).
46+
Stride between successive contiguous vectors of the matrix `A` (a.k.a.,
47+
leading dimension of the matrix `A`).
4848

4949
B: Float64Array
5050
Second matrix.
5151

5252
ldb: integer
53-
Stride of the first dimension of `B` (a.k.a., leading dimension of the
54-
matrix `B`).
53+
Stride between successive contiguous vectors of the matrix `B` (a.k.a.,
54+
leading dimension of the matrix `B`).
5555

5656
β: number
5757
Scalar constant.
@@ -60,8 +60,8 @@
6060
Third matrix.
6161

6262
ldc: integer
63-
Stride of the first dimension of `C` (a.k.a., leading dimension of the
64-
matrix `C`).
63+
Stride between successive contiguous vectors of the matrix `C` (a.k.a.,
64+
leading dimension of the matrix `C`).
6565

6666
Returns
6767
-------

lib/node_modules/@stdlib/blas/base/dgemm/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ interface Routine {
3737
* @param K - number of columns in the matrix `op(A)` and number of rows in the matrix `op(B)`
3838
* @param alpha - scalar constant
3939
* @param A - first matrix
40-
* @param LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
40+
* @param LDA - stride between successive contiguous vectors of the matrix `A` (a.k.a., leading dimension of the matrix `A`)
4141
* @param B - second matrix
42-
* @param LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
42+
* @param LDB - stride between successive contiguous vectors of the matrix `B` (a.k.a., leading dimension of the matrix `B`)
4343
* @param beta - scalar constant
4444
* @param C - third matrix
45-
* @param LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
45+
* @param LDC - stride between successive contiguous vectors of the matrix `C` (a.k.a., leading dimension of the matrix `C`)
4646
* @returns `C`
4747
*
4848
* @example

lib/node_modules/@stdlib/blas/base/dgemm/lib/dgemm.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ var base = require( './base.js' );
4242
* @param {NonNegativeInteger} K - number of columns in the matrix `op(A)` and number of rows in the matrix `op(B)`
4343
* @param {number} alpha - scalar constant
4444
* @param {Float64Array} A - first matrix
45-
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
45+
* @param {PositiveInteger} LDA - stride between successive contiguous vectors of the matrix `A` (a.k.a., leading dimension of the matrix `A`)
4646
* @param {Float64Array} B - second matrix
47-
* @param {PositiveInteger} LDB - stride of the first dimension of `B` (a.k.a., leading dimension of the matrix `B`)
47+
* @param {PositiveInteger} LDB - stride between successive contiguous vectors of the matrix `B` (a.k.a., leading dimension of the matrix `B`)
4848
* @param {number} beta - scalar constant
4949
* @param {Float64Array} C - third matrix
50-
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
50+
* @param {PositiveInteger} LDC - stride between successive contiguous vectors of the matrix `C` (a.k.a., leading dimension of the matrix `C`)
5151
* @throws {TypeError} first argument must be a valid order
5252
* @throws {TypeError} second argument must be a valid transpose operation
5353
* @throws {TypeError} third argument must be a valid transpose operation

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ var o = ns;
124124
- <span class="signature">[`gfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gfill]</span><span class="delimiter">: </span><span class="description">fill a strided array with a specified scalar constant.</span>
125125
- <span class="signature">[`gfindIndex( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfind-index]</span><span class="delimiter">: </span><span class="description">return the index of the first element which passes a test implemented by a predicate function.</span>
126126
- <span class="signature">[`gfindLastIndex( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfind-last-index]</span><span class="delimiter">: </span><span class="description">return the index of the last element which passes a test implemented by a predicate function.</span>
127+
- <span class="signature">[`gindexOfColumn( order, M, N, A, LDA, x, strideX )`][@stdlib/blas/ext/base/gindex-of-column]</span><span class="delimiter">: </span><span class="description">return the index of the first column in an input matrix which has the same elements as a provided search vector.</span>
127128
- <span class="signature">[`gindexOfRow( order, M, N, A, LDA, x, strideX )`][@stdlib/blas/ext/base/gindex-of-row]</span><span class="delimiter">: </span><span class="description">return the index of the first row in an input matrix which has the same elements as a provided search vector.</span>
128129
- <span class="signature">[`gindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/gindex-of]</span><span class="delimiter">: </span><span class="description">return the first index of a specified search element in a strided array.</span>
129130
- <span class="signature">[`gjoinBetween( N, prefix, suffix, x, strideX, separators, strideS )`][@stdlib/blas/ext/base/gjoin-between]</span><span class="delimiter">: </span><span class="description">return a string by joining strided array elements using a specified separator for each pair of consecutive elements.</span>
@@ -412,6 +413,8 @@ console.log( objectKeys( ns ) );
412413

413414
[@stdlib/blas/ext/base/gfind-last-index]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gfind-last-index
414415

416+
[@stdlib/blas/ext/base/gindex-of-column]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gindex-of-column
417+
415418
[@stdlib/blas/ext/base/gindex-of-row]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gindex-of-row
416419

417420
[@stdlib/blas/ext/base/gindex-of]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/blas/ext/base/gindex-of

0 commit comments

Comments
 (0)