Skip to content

Commit 8939db8

Browse files
authored
Merge branch 'develop' into feature/mathomp4/add-openmp-support
2 parents 9c3c970 + 7f9e201 commit 8939db8

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2.1
33
executors:
44
gcc-build-env:
55
docker:
6-
- image: gmao/ubuntu20-geos-env-mkl:v6.1.0-openmpi_4.0.5-gcc_10.2.0
6+
- image: gmao/ubuntu20-geos-env-mkl:v6.2.4-openmpi_4.0.5-gcc_10.3.0
77
auth:
88
username: $DOCKERHUB_USER
99
password: $DOCKERHUB_AUTH_TOKEN

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
*~
22
/@fvdycore
3+
/fvdycore
4+
/fvdycore@

StandAlone_AdvCore.F90

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ program StandAlone_AdvCore
1616
character(*), parameter :: IAM = __FILE__
1717

1818
type (MAPL_Cap) :: cap
19-
type (MAPL_FlapCapOptions) :: cap_options
19+
type (MAPL_FlapCLI) :: cli
20+
type (MAPL_CapOptions) :: cap_options
2021
integer :: status
2122

22-
cap_options = MAPL_FlapCapOptions( &
23+
cli = MAPL_FlapCLI( &
2324
description = 'FV Standalone dvCore', &
2425
authors = 'S.J. Lin, R. Rood, W. Putman')
2526

27+
cap_options = MAPL_CapOptions(cli)
2628
cap = MAPL_Cap('Standalone FV3 AdvCore', SetServices, cap_options=cap_options)
2729
call cap%run(_RC)
2830

StandAlone_DynAdvCore.F90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,14 @@ program StandAlone_DynAdvCore
1616
character(*), parameter :: IAM = __FILE__
1717

1818
type (MAPL_Cap) :: cap
19-
type (MAPL_FlapCapOptions) :: cap_options
19+
type (MAPL_FlapCLI) :: cli
20+
type (MAPL_CapOptions) :: cap_options
2021
integer :: status
2122

22-
cap_options = MAPL_FlapCapOptions( &
23+
cli = MAPL_FlapCLI( &
2324
description = 'FV Standalone DyAdvCore', &
2425
authors = 'S.J. Lin, R. Rood, W. Putman')
25-
26+
cap_options = MAPL_CapOptions(cli)
2627
cap = MAPL_Cap('Standalone FV3 DynAdvCore', SetServices, cap_options = cap_options)
2728
call cap%run(_RC)
2829

StandAlone_FV3_Dycore.F90

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@ program StandAlone_FV3_Dycore
1515
character(*), parameter :: IAM = __FILE__
1616

1717
type (MAPL_Cap) :: cap
18-
type (MAPL_FlapCapOptions), allocatable :: cap_options
18+
type (MAPL_FlapCLI) :: cli
19+
type (MAPL_CapOptions) :: cap_options
1920
integer :: status
2021

21-
cap_options = MAPL_FlapCapOptions(description = 'FV Standalone Dycore',&
22-
authors = 'S.J. Lin, R. Rood, W. Putman')
22+
cli = MAPL_FlapCLI(description = 'FV Standalone Dycore',&
23+
authors = 'S.J. Lin, R. Rood, W. Putman')
24+
cap_options = MAPL_CapOptions(cli)
2325
cap = MAPL_Cap('GCM', SetServices, cap_options = cap_options)
2426
call cap%run(_RC)
2527

0 commit comments

Comments
 (0)