2021-10-12 22:39:54 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <atom.h>
|
|
|
|
#include <parameter.h>
|
2021-10-12 15:04:08 +02:00
|
|
|
#include <stats.h>
|
2021-10-12 22:39:54 +02:00
|
|
|
#include <timers.h>
|
2021-10-12 15:04:08 +02:00
|
|
|
|
|
|
|
void initStats(Stats *s) {
|
|
|
|
s->total_force_neighs = 0;
|
|
|
|
s->total_force_iters = 0;
|
|
|
|
}
|
2021-10-12 22:39:54 +02:00
|
|
|
|
|
|
|
void displayStatistics(Atom *atom, Parameter *param, Stats *stats, double *timer) {
|
|
|
|
#ifdef COMPUTE_STATS
|
|
|
|
double force_useful_volume = 1e-9 * ( (double)(atom->Nlocal * (param->ntimes + 1)) * (sizeof(MD_FLOAT) * 6 + sizeof(int)) +
|
|
|
|
(double)(stats->total_force_neighs) * (sizeof(MD_FLOAT) * 3 + sizeof(int)) );
|
2021-10-20 22:43:08 +02:00
|
|
|
double avg_neigh = stats->total_force_neighs / (double)(atom->Nlocal * (param->ntimes + 1));
|
|
|
|
double avg_simd = stats->total_force_iters / (double)(atom->Nlocal * (param->ntimes + 1));
|
2021-10-12 22:39:54 +02:00
|
|
|
#ifdef EXPLICIT_TYPES
|
|
|
|
force_useful_volume += 1e-9 * (double)((atom.Nlocal * (param.ntimes + 1)) + stats.total_force_neighs) * sizeof(int);
|
|
|
|
#endif
|
|
|
|
printf("Statistics:\n");
|
|
|
|
printf("\tVector width: %d, Processor frequency: %.4f GHz\n", VECTOR_WIDTH, param->proc_freq);
|
2021-10-20 22:43:08 +02:00
|
|
|
printf("\tAverage neighbors per atom: %.4f\n", avg_neigh);
|
|
|
|
printf("\tAverage SIMD iterations per atom: %.4f\n", avg_simd);
|
2021-10-12 22:39:54 +02:00
|
|
|
printf("\tTotal number of computed pair interactions: %lld\n", stats->total_force_neighs);
|
2021-10-13 22:27:34 +02:00
|
|
|
printf("\tTotal number of SIMD iterations: %lld\n", stats->total_force_iters);
|
2021-10-12 22:39:54 +02:00
|
|
|
printf("\tUseful read data volume for force computation: %.2fGB\n", force_useful_volume);
|
|
|
|
printf("\tCycles/SIMD iteration: %.4f\n", timer[FORCE] * param->proc_freq * 1e9 / stats->total_force_iters);
|
|
|
|
#endif
|
|
|
|
}
|