Skip to content

Commit 0643a79

Browse files
committed
bench: fix call signatures
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: passed - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 344834e commit 0643a79

40 files changed

+40
-40
lines changed

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.10d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.10d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.10d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.10d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.11d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.11d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, false, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, true, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_rowmajor_accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
116116

117117
b.tic();
118118
for ( i = 0; i < b.iterations; i++ ) {
119-
map( x, y, identity );
119+
map( x, y, true, identity, {} );
120120
if ( isnan( y.data[ i%len ] ) ) {
121121
b.fail( 'should not return NaN' );
122122
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.2d_rowmajor_accessors_complex.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
123123

124124
b.tic();
125125
for ( i = 0; i < b.iterations; i++ ) {
126-
map( x, y, identity );
126+
map( x, y, true, identity, {} );
127127
if ( isnan( ybuf[ i%len ] ) ) {
128128
b.fail( 'should not return NaN' );
129129
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.3d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.3d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.3d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, false, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.3d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8888

8989
b.tic();
9090
for ( i = 0; i < b.iterations; i++ ) {
91-
map( x, y, identity );
91+
map( x, y, true, identity, {} );
9292
if ( isnan( y.data[ i%len ] ) ) {
9393
b.fail( 'should not return NaN' );
9494
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.4d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.4d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.4d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.4d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.5d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.5d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.5d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.5d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.6d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.6d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.6d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.6d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.7d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.7d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.7d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.7d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.8d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.8d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.8d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.8d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.9d_blocked_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.9d_blocked_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.9d_columnmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, false, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

lib/node_modules/@stdlib/ndarray/base/map/benchmark/benchmark.9d_rowmajor.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function createBenchmark( len, shape, xtype, ytype ) {
8787

8888
b.tic();
8989
for ( i = 0; i < b.iterations; i++ ) {
90-
map( x, y, identity );
90+
map( x, y, true, identity, {} );
9191
if ( isnan( y.data[ i%len ] ) ) {
9292
b.fail( 'should not return NaN' );
9393
}

0 commit comments

Comments
 (0)