From 40bbaac0783f6cc0eeeed6d888a4e891e6bddaa9 Mon Sep 17 00:00:00 2001 From: Rafael Ravedutti Date: Wed, 13 Oct 2021 22:27:34 +0200 Subject: [PATCH] Add hardware information on logbook Signed-off-by: Rafael Ravedutti --- src/stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stats.c b/src/stats.c index 751544e..b31b35b 100644 --- a/src/stats.c +++ b/src/stats.c @@ -20,7 +20,7 @@ void displayStatistics(Atom *atom, Parameter *param, Stats *stats, double *timer printf("Statistics:\n"); printf("\tVector width: %d, Processor frequency: %.4f GHz\n", VECTOR_WIDTH, param->proc_freq); printf("\tTotal number of computed pair interactions: %lld\n", stats->total_force_neighs); - printf("\tTotal number of most SIMD iterations: %lld\n", stats->total_force_iters); + printf("\tTotal number of SIMD iterations: %lld\n", stats->total_force_iters); 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