@@ -179,7 +179,7 @@ static void s_run(const char *name, uint64_t (*op)(int size), int *cutoff)
179
179
exit (EXIT_FAILURE );
180
180
}
181
181
if (args .verbose == 1 ) {
182
- printf ("%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
182
+ printf ("%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
183
183
}
184
184
if (t2 < t1 ) {
185
185
if (count == s_stabilization_extra ) {
@@ -504,20 +504,20 @@ int main(int argc, char **argv)
504
504
t1 = s_time_mul (x );
505
505
set_cutoffs (& orig );
506
506
t2 = s_time_mul (x );
507
- fprintf (multiplying , "%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
507
+ fprintf (multiplying , "%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
508
508
fflush (multiplying );
509
509
if (args .verbose == 1 ) {
510
- printf ("MUL %d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
510
+ printf ("MUL %d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
511
511
fflush (stdout );
512
512
}
513
513
set_cutoffs (& max_cutoffs );
514
514
t1 = s_time_sqr (x );
515
515
set_cutoffs (& orig );
516
516
t2 = s_time_sqr (x );
517
- fprintf (squaring ,"%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
517
+ fprintf (squaring ,"%d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
518
518
fflush (squaring );
519
519
if (args .verbose == 1 ) {
520
- printf ("SQR %d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
520
+ printf ("SQR %d: %9" PRIu64 " %9" PRIu64 ", %9" PRIi64 "\n" , x , t1 , t2 , (int64_t )t2 - (int64_t )t1 );
521
521
fflush (stdout );
522
522
}
523
523
}
0 commit comments