full_res          221 test/monitoring/test_overhead.c     double full_res[FULL_NB_ITER];
full_res          262 test/monitoring/test_overhead.c             MPI_Gather(results, NB_ITER, MPI_DOUBLE, full_res, NB_ITER, MPI_DOUBLE, 0, MPI_COMM_WORLD);
full_res          265 test/monitoring/test_overhead.c                 qsort(full_res, FULL_NB_ITER, sizeof(double), &comp_double);
full_res          266 test/monitoring/test_overhead.c                 const double min_lat = full_res[0];
full_res          267 test/monitoring/test_overhead.c                 const double max_lat = full_res[FULL_NB_ITER - 1];
full_res          268 test/monitoring/test_overhead.c                 const double med_lat = full_res[(FULL_NB_ITER - 1) / 2];
full_res          269 test/monitoring/test_overhead.c                 const double q1_lat  = full_res[(FULL_NB_ITER - 1) / 4];
full_res          270 test/monitoring/test_overhead.c                 const double q3_lat  = full_res[ 3 * (FULL_NB_ITER - 1) / 4];
full_res          271 test/monitoring/test_overhead.c                 const double d1_lat  = full_res[(FULL_NB_ITER - 1) / 10];
full_res          272 test/monitoring/test_overhead.c                 const double d9_lat  = full_res[ 9 * (FULL_NB_ITER - 1) / 10];
full_res          275 test/monitoring/test_overhead.c                     avg_lat += full_res[iter];