Skip to content

Commit

Permalink
Merge pull request #296 from GEOS-ESM/hotfix/mathomp4/fix_large_tag
Browse files Browse the repository at this point in the history
Fixes #295. Fix large tag issue.
  • Loading branch information
mathomp4 authored Apr 13, 2020
2 parents c2f906d + 6d48e1e commit a4fc845
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion MAPL_Base/MAPL_Cap.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Tests/ExtDataDriverMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a4fc845

Please sign in to comment.