From 13f381b9ac6aad94a8dc5a1fc926ea57a57e0eba Mon Sep 17 00:00:00 2001 From: Tom Clune Date: Fri, 27 Oct 2023 10:10:06 -0400 Subject: [PATCH 1/3] Fixed missing pflogger initialization. --- CHANGELOG.md | 1 + pfio/tests/pfio_ctest_io.F90 | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88f6c594af04..c2bf0cb92973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### Fixed +- Fixed missing initialize of pFlogger in a pfio test. Not clear why this was not failing for other compilers - detected with ifort 2010.10.0. ### Removed diff --git a/pfio/tests/pfio_ctest_io.F90 b/pfio/tests/pfio_ctest_io.F90 index 9e2713f499f1..ff00a0b4795c 100644 --- a/pfio/tests/pfio_ctest_io.F90 +++ b/pfio/tests/pfio_ctest_io.F90 @@ -451,6 +451,7 @@ program main use ctest_io_CLI use MAPL_ExceptionHandling use FakeHistData0Mod + use pFlogger, only: pflogger_init => initialize implicit none integer :: rank, npes, ierror, provided,required @@ -533,6 +534,7 @@ program main my_icomm = MPI_COMM_NULL my_appcomm = MPI_COMM_NULL + call pflogger_init() do i = 1, N_iclient_group low_rank = client_start + (i-1) * options%npes_iserver up_rank = client_start + i*options%npes_iserver From ecfe57aae998e86aed8b0e0ef9a9cfbcac74e125 Mon Sep 17 00:00:00 2001 From: Tom Clune Date: Fri, 27 Oct 2023 10:13:58 -0400 Subject: [PATCH 2/3] Missed a related change. --- pfio/tests/pfio_performance.F90 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pfio/tests/pfio_performance.F90 b/pfio/tests/pfio_performance.F90 index 57f6db49f850..b3fa4d515bc4 100644 --- a/pfio/tests/pfio_performance.F90 +++ b/pfio/tests/pfio_performance.F90 @@ -468,6 +468,7 @@ program main use performace_CLI use FakeHistDataMod use MAPL_ExceptionHandling + use pFlogger, only: pflogger_init => initialize implicit none integer :: rank, npes, ierror @@ -492,6 +493,7 @@ program main call process_command_line(options, rc=status) + call pflogger_init() directory_service = DirectoryService(MPI_COMM_WORLD) my_icomm = MPI_COMM_NULL From 1b7a536adadb663fa8f788680e1138e76eed09a6 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Fri, 27 Oct 2023 11:05:59 -0400 Subject: [PATCH 3/3] Update changelog and cmakelists for release --- CHANGELOG.md | 7 ++++++- CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2bf0cb92973..da96d57431ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,12 +12,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### Fixed -- Fixed missing initialize of pFlogger in a pfio test. Not clear why this was not failing for other compilers - detected with ifort 2010.10.0. ### Removed ### Deprecated +## [2.41.2] - 2023-10-27 + +### Fixed + +- Fixed missing initialize of pFlogger in a pfio test. Not clear why this was not failing for other compilers - detected with ifort 2021.10.0. + ## [2.41.1] - 2023-10-04 ### Fixed diff --git a/CMakeLists.txt b/CMakeLists.txt index b6d540e9b33e..e210d602ffe5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ endif () project ( MAPL - VERSION 2.41.1 + VERSION 2.41.2 LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF # Set the possible values of build type for cmake-gui