Skip to content

Commit

Permalink
Merge pull request #2687 from GEOS-ESM/hotfix/tclune/#2686-workaround…
Browse files Browse the repository at this point in the history
…-for-NAG

Fixes #2686
  • Loading branch information
mathomp4 authored Mar 28, 2024
2 parents 761fc2b + c4f90bb commit 670bc7e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.44.3] - 2024-03-28

### Fixed

- The bundle I/O unit test was failing on NAG. Partly due to an untrapped return code, but also some weird issue with setting values in ESMF Config. Probably not a bug in the compiler but something in ESMF or MAPL handling line continuations.

## [2.44.2] - 2024-03-26

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif ()

project (
MAPL
VERSION 2.44.2
VERSION 2.44.3
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
2 changes: 1 addition & 1 deletion base/MAPL_CubedSphereGridFactory.F90
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ subroutine verify(n, m_world, ms, rc)
else

_ASSERT(n /= MAPL_UNDEFINED_INTEGER,'n not specified')
_ASSERT(m_world /= MAPL_UNDEFINED_INTEGER,'m_wold not specified')
_ASSERT(m_world /= MAPL_UNDEFINED_INTEGER,'m_world not specified')
allocate(ms(n), stat=status)
_VERIFY(status)

Expand Down
1 change: 1 addition & 0 deletions base/tests/mapl_bundleio_test.F90
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ function create_cf(grid_name,im_world,jm_world,nx,ny,lm,cs_stretch_param,rc) res
pole=grid_name(1:2)

cf = MAPL_ConfigCreate(_RC)
call MAPL_ConfigSetAttribute(cf,value=NX, label=trim(grid_name)//".other:",_RC)
call MAPL_ConfigSetAttribute(cf,value=NX, label=trim(grid_name)//".NX:",_RC)
call MAPL_ConfigSetAttribute(cf,value=lm, label=trim(grid_name)//".LM:",_RC)
if (jm_world==6*im_world) then
Expand Down

0 comments on commit 670bc7e

Please sign in to comment.