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
}

0 commit comments

Comments
 (0)