From 54e7aed8f7fde37e0cf1b6543bcff1167b781847 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Mon, 13 Apr 2020 08:05:59 -0400 Subject: [PATCH 1/3] Use a smaller tag integer --- MAPL_Base/MAPL_Cap.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAPL_Base/MAPL_Cap.F90 b/MAPL_Base/MAPL_Cap.F90 index 68054a02440f..cdcc33a50333 100644 --- a/MAPL_Base/MAPL_Cap.F90 +++ b/MAPL_Base/MAPL_Cap.F90 @@ -324,7 +324,7 @@ subroutine fill_mapl_comm(split_comm, gcomm, running_old_o_server, mapl_comm, un integer :: status integer :: grank integer :: source - integer, parameter :: MAPL_TAG_GLOBAL_IOROOT_RANK = 987654 + integer, parameter :: MAPL_TAG_GLOBAL_IOROOT_RANK = 987 integer :: stat(MPI_STATUS_SIZE) character(len=:), allocatable :: s_name From 335248841c01c99ec8974da622dbba9781b17428 Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Mon, 13 Apr 2020 08:07:07 -0400 Subject: [PATCH 2/3] Missed a test --- Tests/ExtDataDriverMod.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/ExtDataDriverMod.F90 b/Tests/ExtDataDriverMod.F90 index 7684272c8573..e1687b34e87d 100644 --- a/Tests/ExtDataDriverMod.F90 +++ b/Tests/ExtDataDriverMod.F90 @@ -316,7 +316,7 @@ subroutine fill_mapl_comm(split_comm, gcomm, mapl_comm, unusable, rc) integer :: comm integer :: status - integer, parameter :: MAPL_TAG_GLOBAL_IOROOT_RANK = 987654 + integer, parameter :: MAPL_TAG_GLOBAL_IOROOT_RANK = 987 character(len=:), allocatable :: s_name _UNUSED_DUMMY(unusable) From 6d48e1e8fc8ebd49e1373d1d634aaffeb56a340e Mon Sep 17 00:00:00 2001 From: Matthew Thompson Date: Mon, 13 Apr 2020 08:14:21 -0400 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8508ef3b98a5..8a029f3bad0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.5] - 2020-04-13 + +### Fixed + +- Fixes an issue with a too-large MPI tag. + +## [2.0.4] - 2020-04-03 + +### Fixed + +- Fixes an issue when regridding thru the locstream in the history component. + +## [2.0.3] - 2020-03-19 + +### Fixed + +- Fixed a logic bug in the MAPL Profilers that make affect certain runs when using NUOPC. + ## [2.0.2] - 2020-03-10 ### Fixed