From e52ae07ce45a2a3a7685d13fc1de6aa2b8b6c960 Mon Sep 17 00:00:00 2001 From: jaime Date: Thu, 16 Nov 2023 14:26:49 -0600 Subject: [PATCH] When mpi finalize is call dont call it again --- test/src/real_apps/gray-scott/analysis/pdf-calc.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/test/src/real_apps/gray-scott/analysis/pdf-calc.cpp b/test/src/real_apps/gray-scott/analysis/pdf-calc.cpp index ef830bf6..dc88ecd2 100644 --- a/test/src/real_apps/gray-scott/analysis/pdf-calc.cpp +++ b/test/src/real_apps/gray-scott/analysis/pdf-calc.cpp @@ -332,7 +332,6 @@ int main(int argc, char *argv[]) auto app_end_time = std::chrono::high_resolution_clock::now(); // Record end time of the application auto app_duration = std::chrono::duration_cast(app_end_time - app_start_time); logger.info("Rank {} - ET {} - milliseconds", rank, app_duration.count()); - MPI_Finalize(); MPI_Finalize(); return 0;