diff options
author | 2019-05-20 15:20:42 -0700 | |
---|---|---|
committer | 2019-05-20 15:20:42 -0700 | |
commit | 765a3f27bc207c162161d5bca34bc6988fe9f476 (patch) | |
tree | f26179e449a3054da9d15d370830233e76199698 /Source/Python/WarpXWrappers.cpp | |
parent | 444af25c69c61d24ec1d001cf7dce5ab98b66423 (diff) | |
download | WarpX-765a3f27bc207c162161d5bca34bc6988fe9f476.tar.gz WarpX-765a3f27bc207c162161d5bca34bc6988fe9f476.tar.zst WarpX-765a3f27bc207c162161d5bca34bc6988fe9f476.zip |
Let amrex decide whether it should finalize MPI
Diffstat (limited to 'Source/Python/WarpXWrappers.cpp')
-rw-r--r-- | Source/Python/WarpXWrappers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Python/WarpXWrappers.cpp b/Source/Python/WarpXWrappers.cpp index 16d7cd841..3c1a930b3 100644 --- a/Source/Python/WarpXWrappers.cpp +++ b/Source/Python/WarpXWrappers.cpp @@ -89,7 +89,7 @@ extern "C" void amrex_finalize (int finalize_mpi) { - amrex::Finalize(finalize_mpi); + amrex::Finalize(); } void warpx_init () |