Lines Matching refs:runtime_ns_max
979 static void calc_convergence(double runtime_ns_max, double *convergence)
1077 *convergence = runtime_ns_max;
1086 tprintf(" (%6.1fs de-converged)", runtime_ns_max / NSEC_PER_SEC);
1093 static void show_summary(double runtime_ns_max, int l, double *convergence)
1096 (double)(l+1)/g->p.nr_loops*100.0, runtime_ns_max / NSEC_PER_SEC / 60.0);
1098 calc_convergence(runtime_ns_max, convergence);
1116 double runtime_ns_max;
1256 runtime_ns_max = diff.tv_sec * NSEC_PER_SEC;
1257 runtime_ns_max += diff.tv_usec * NSEC_PER_USEC;
1261 process_nr, thread_nr, runtime_ns_max / bytes_done, val);
1269 runtime_ns_max = diff.tv_sec * NSEC_PER_SEC;
1270 runtime_ns_max += diff.tv_usec * NSEC_PER_USEC;
1272 show_summary(runtime_ns_max, l, &convergence);