Skip to content

Commit 41e2b32

Browse files
committed
bench: restore benchmark names
--- 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 6f365b8 commit 41e2b32

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/zfill/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function main() {
105105
for ( i = min; i <= max; i++ ) {
106106
len = pow( 10, i );
107107
f = createBenchmark( len );
108-
bench( format( '%s:len=%d', pkg, len ), f );
108+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
109109
}
110110
}
111111

lib/node_modules/@stdlib/blas/ext/base/zsum/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function main() {
9999
for ( i = min; i <= max; i++ ) {
100100
len = pow( 10, i );
101101
f = createBenchmark( len );
102-
bench( format( '%s::ndarray:len=%d', pkg, len ), f );
102+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
103103
}
104104
}
105105

lib/node_modules/@stdlib/blas/ext/base/zsumkbn/benchmark/benchmark.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function main() {
9999
for ( i = min; i <= max; i++ ) {
100100
len = pow( 10, i );
101101
f = createBenchmark( len );
102-
bench( format( '%s::ndarray:len=%d', pkg, len ), f );
102+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
103103
}
104104
}
105105

lib/node_modules/@stdlib/stats/strided/dmaxabssorted/benchmark/benchmark.ndarray.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
len = pow( 10, i );
9898
f = createBenchmark( len );
99-
bench( format( '%s::ndarray:len=%d', pkg, len ), f );
99+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
100100
}
101101
}
102102

0 commit comments

Comments
 (0)