Skip to content

Commit 569fb05

Browse files
committed
bench: fix alias
1 parent 24e9471 commit 569fb05

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/node_modules/@stdlib/array/base/mskunary4d/benchmark/benchmark.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var filled4dBy = require( '@stdlib/array/base/filled4d-by' );
3131
var zeros4d = require( '@stdlib/array/base/zeros4d' );
3232
var numel = require( '@stdlib/ndarray/base/numel' );
3333
var pkg = require( './../package.json' ).name;
34-
var mskunary3d = require( './../lib' );
34+
var mskunary4d = require( './../lib' );
3535

3636

3737
// FUNCTIONS //
@@ -72,7 +72,7 @@ function createBenchmark( shape ) {
7272

7373
b.tic();
7474
for ( i = 0; i < b.iterations; i++ ) {
75-
mskunary3d( arrays, shape, identity );
75+
mskunary4d( arrays, shape, identity );
7676
i3 = i % shape[ 0 ];
7777
i2 = i % shape[ 1 ];
7878
i1 = i % shape[ 2 ];

lib/node_modules/@stdlib/array/base/mskunary4d/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ function mskunary4d( arrays, shape, fcn ) {
8484
x = arrays[ 0 ];
8585
y = arrays[ 2 ];
8686
m = arrays[ 1 ];
87-
8887
for ( i3 = 0; i3 < S3; i3++ ) {
8988
x2 = x[ i3 ];
9089
y2 = y[ i3 ];

0 commit comments

Comments
 (0)