Skip to content

Commit 64e6770

Browse files
authored
Apply suggestions from code review
Co-authored-by: Athan <kgryte@gmail.com> Signed-off-by: Athan <kgryte@gmail.com>
1 parent 6746b14 commit 64e6770

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/base/ssorthp/benchmark/c/unsorted-random

lib/node_modules/@stdlib/blas/ext/base/ssorthp/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)