Lines Matching refs:runtime_ns_max
1022 static void calc_convergence(double runtime_ns_max, double *convergence)
1124 *convergence = runtime_ns_max;
1133 tprintf(" (%6.1fs de-converged)", runtime_ns_max / NSEC_PER_SEC);
1142 static void show_summary(double runtime_ns_max, int l, double *convergence)
1145 (double)(l+1)/g->p.nr_loops*100.0, runtime_ns_max / NSEC_PER_SEC / 60.0);
1147 calc_convergence(runtime_ns_max, convergence);
1165 double runtime_ns_max;
1306 runtime_ns_max = diff.tv_sec * NSEC_PER_SEC;
1307 runtime_ns_max += diff.tv_usec * NSEC_PER_USEC;
1311 process_nr, thread_nr, runtime_ns_max / bytes_done, val);
1319 runtime_ns_max = diff.tv_sec * NSEC_PER_SEC;
1320 runtime_ns_max += diff.tv_usec * NSEC_PER_USEC;
1322 show_summary(runtime_ns_max, l, &convergence);