Skip to content

Commit 3f65db8

Browse files
fix: CI error
1 parent ae61cdf commit 3f65db8

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

lib/node_modules/@stdlib/stats/base/dsmeanpn/benchmark/benchmark.ndarray.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@ var dsmeanpn = require( './../lib/ndarray.js' );
3030

3131
// FUNCTIONS //
3232

33+
// VARIABLES //
34+
35+
var options = {
36+
'dtype': 'float32'
37+
};
38+
39+
3340
/**
3441
* Creates a benchmark function.
3542
*

lib/node_modules/@stdlib/stats/base/dsmeanpn/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
--------
3333
// Standard Usage:
3434
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 2.0 ] );
35-
> {{alias}}( x.length, x, 1 )
35+
> {{alias}}( x.length, x, 2 )
3636
~0.3333
3737

3838
// Using `N` and stride parameters:
@@ -43,7 +43,7 @@
4343
// Using view offsets:
4444
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
4545
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
46-
> {{alias}}( 4, x1, stride )
46+
> {{alias}}( 4, x1, 2 )
4747
~-0.3333
4848

4949

lib/node_modules/@stdlib/stats/base/dsmeanpn/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ double API_SUFFIX(stdlib_strided_dsmeanpn)( const CBLAS_INT N, const float *X, c
5353
* @param offsetX starting index for X
5454
* @return output value
5555
*/
56-
double API_SUFFIX(stdlib_strided_smax_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
56+
double API_SUFFIX(stdlib_strided_dsmeanpn_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
5757
double dN;
5858
double mu;
5959
double c;

0 commit comments

Comments
 (0)