Skip to content

Commit be217cb

Browse files
committed
bench: fix descriptions
--- 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: na - 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: passed - 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 3c53cd5 commit be217cb

File tree

1 file changed

+2
-2
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dsortins/benchmark/c/unsorted-random

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/dsortins/benchmark/c/unsorted-random/benchmark.length.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int main( void ) {
174174
iter = ITERATIONS / pow( 10, i-1 );
175175
for ( j = 0; j < REPEATS; j++ ) {
176176
count += 1;
177-
printf( "# c::%s:unsorted,random:len=%d\n", NAME, len );
177+
printf( "# c::%s::unsorted,random:len=%d\n", NAME, len );
178178
elapsed = benchmark1( iter, len );
179179
print_results( iter, elapsed );
180180
printf( "ok %d benchmark finished\n", count );
@@ -185,7 +185,7 @@ int main( void ) {
185185
iter = ITERATIONS / pow( 10, i-1 );
186186
for ( j = 0; j < REPEATS; j++ ) {
187187
count += 1;
188-
printf( "# c::%s:ndarray:unsorted,random:len=%d\n", NAME, len );
188+
printf( "# c::%s::unsorted,random:ndarray:len=%d\n", NAME, len );
189189
elapsed = benchmark2( iter, len );
190190
print_results( iter, elapsed );
191191
printf( "ok %d benchmark finished\n", count );

0 commit comments

Comments
 (0)