Skip to content

Commit 0da2404

Browse files
committed
fix: apply code review suggestion
1 parent aa137ee commit 0da2404

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ The function has the following parameters:
5454

5555
- **N**: number of indexed elements.
5656
- **x**: input [`Float64Array`][@stdlib/array/float64].
57-
- **strideX**: index increment for `x`.
57+
- **strideX**: stride length for `x`.
5858
- **out**: output [`Float64Array`][@stdlib/array/float64] whose first element is the sum and whose second element is the number of non-NaN elements.
59-
- **strideOut**: index increment for `out`.
59+
- **strideOut**: stride length for `out`.
6060

6161
The `N` and stride parameters determine which elements are accessed at runtime. For example, to compute the sum of every other element in `x`,
6262

@@ -206,7 +206,7 @@ The function accepts the following arguments:
206206
207207
- **N**: `[in] CBLAS_INT` number of indexed elements.
208208
- **X**: `[in] double*` input array.
209-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
209+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
210210
- **n**: `[out] CBLAS_INT*` number of non-NaN elements.
211211
212212
```c
@@ -229,7 +229,7 @@ The function accepts the following arguments:
229229
230230
- **N**: `[in] CBLAS_INT` number of indexed elements.
231231
- **X**: `[in] double*` input array.
232-
- **strideX**: `[in] CBLAS_INT` index increment for `X`.
232+
- **strideX**: `[in] CBLAS_INT` stride length for `X`.
233233
- **offsetX**: `[in] CBLAS_INT` starting index for `X`.
234234
- **n**: `[out] CBLAS_INT*` number of non-NaN elements.
235235

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/docs/repl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
Input array.
2121

2222
strideX: integer
23-
Index increment for `x`.
23+
Stride length for `x`.
2424

2525
out: Float64Array
2626
Output array.
2727

2828
strideOut: integer
29-
Index increment for `out`.
29+
Stride length for `out`.
3030

3131
Returns
3232
-------
@@ -74,7 +74,7 @@
7474
Input array.
7575

7676
strideX: integer
77-
Index increment for `x`.
77+
Stride length for `x`.
7878

7979
offsetX: integer
8080
Starting index for `x`.
@@ -83,7 +83,7 @@
8383
Output array.
8484

8585
strideOut: integer
86-
Index increment for `out`.
86+
Stride length for `out`.
8787

8888
offsetOut: integer
8989
Starting index for `out`.

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/lib/ndarray.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ var abs = require( '@stdlib/math/base/special/abs' );
3939
*
4040
* @param {PositiveInteger} N - number of indexed elements
4141
* @param {Float64Array} x - input array
42-
* @param {integer} strideX - `x` index increment
42+
* @param {integer} strideX - `x` stride length
4343
* @param {NonNegativeInteger} offsetX - `x` starting index
4444
* @param {Float64Array} out - output array
45-
* @param {integer} strideOut - `out` index increment
45+
* @param {integer} strideOut - `out` stride length
4646
* @param {NonNegativeInteger} offsetOut - `out` starting index
4747
* @returns {Float64Array} output array
4848
*

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/lib/ndarray.native.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ var addon = require( './../src/addon.node' );
3030
*
3131
* @param {PositiveInteger} N - number of indexed elements
3232
* @param {Float64Array} x - input array
33-
* @param {integer} strideX - `x` index increment
33+
* @param {integer} strideX - `x` stride length
3434
* @param {NonNegativeInteger} offsetX - `x` starting index
3535
* @param {Float64Array} out - output array
36-
* @param {integer} strideOut - `out` index increment
36+
* @param {integer} strideOut - `out` stride length
3737
* @param {NonNegativeInteger} offsetOut - `out` starting index
3838
* @returns {Float64Array} output array
3939
*

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ double API_SUFFIX(stdlib_strided_dnannsumkbn)( const CBLAS_INT N, const double *
5757
*
5858
* @param N number of indexed elements
5959
* @param X input array
60-
* @param strideX index increment
60+
* @param strideX stride length
6161
* @param offsetX starting index
6262
* @param n number of non-NaN elements
6363
* @return output value

0 commit comments

Comments
 (0)