Skip to content

Commit 979807b

Browse files
committed
bench: fix invocation
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 737ae65 commit 979807b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/array/base/banded/filled2d-by/benchmark/benchmark.size.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function main() {
9696
for ( i = min; i <= max; i++ ) {
9797
N = floor( sqrt( pow( 10, i ) ) );
9898

99-
f = createBenchmark( N, k );
99+
f = createBenchmark( N, k, k );
100100
bench( pkg+':ku='+k+',kl='+k+',size='+(N*N), f );
101101
}
102102
}

lib/node_modules/@stdlib/array/base/banded/filled2d-by/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type Nullary<T, V> = ( this: V ) => T;
3535
* @param indices - current array element indices
3636
* @returns fill value
3737
*/
38-
type Unary<T, V> = ( this: V, indices: Array<number> ) => T;
38+
type Unary<T, V> = ( this: V, indices: [ number, number ] ) => T;
3939

4040
/**
4141
* Callback function.

0 commit comments

Comments
 (0)