Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,7 @@ AC_CONFIG_FILES([
test_fms/test-lib.sh
test_fms/intel_coverage.sh
test_fms/Makefile
test_fms/common/Makefile
test_fms/astronomy/Makefile
test_fms/diag_manager/Makefile
test_fms/data_override/Makefile
Expand Down
10 changes: 7 additions & 3 deletions mpp/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ libmpp_la_SOURCES = \
include/mpp_do_checkV.fh \
include/mpp_do_get_boundary.fh \
include/mpp_do_get_boundary_ad.fh \
include/mpp_do_global_field.fh \
include/mpp_do_global_field_ad.fh \
include/mpp_do_redistribute.fh \
include/mpp_do_update.fh \
Expand Down Expand Up @@ -87,6 +86,8 @@ libmpp_la_SOURCES = \
include/mpp_global_sum_ad.fh \
include/mpp_global_sum_tl.fh \
include/mpp_group_update.fh \
include/mpp_pack.fh \
include/mpp_pack.inc \
include/mpp_read_2Ddecomp.fh \
include/mpp_read_compressed.fh \
include/mpp_read_distributed_ascii.fh \
Expand Down Expand Up @@ -153,6 +154,8 @@ mpp_mod.$(FC_MODEXT): \
include/mpp_type_nocomm.fh \
include/mpp_gather.fh \
include/mpp_scatter.fh \
include/mpp_pack.fh \
include/mpp_pack.inc \
include/system_clock.fh
mpp_data_mod.$(FC_MODEXT): \
mpp_parameter_mod.$(FC_MODEXT) \
Expand Down Expand Up @@ -194,7 +197,6 @@ mpp_domains_mod.$(FC_MODEXT): \
include/mpp_update_domains2D_nonblock.fh \
include/mpp_update_nest_domains.fh \
include/mpp_domains_reduce.inc \
include/mpp_do_global_field.fh \
include/mpp_do_global_field_ad.fh \
include/mpp_global_field.fh \
include/mpp_global_field_ad.fh \
Expand All @@ -204,7 +206,9 @@ mpp_domains_mod.$(FC_MODEXT): \
include/mpp_global_sum_tl.fh \
include/mpp_unstruct_domain.inc \
include/mpp_global_field_ug.fh \
include/mpp_unstruct_pass_data.fh
include/mpp_unstruct_pass_data.fh \
include/mpp_pack.fh \
include/mpp_pack.inc
mpp_efp_mod.$(FC_MODEXT): mpp_parameter_mod.$(FC_MODEXT) mpp_mod.$(FC_MODEXT)
mpp_memutils_mod.$(FC_MODEXT): mpp_mod.$(FC_MODEXT)
mpp_pset_mod.$(FC_MODEXT): mpp_mod.$(FC_MODEXT)
Expand Down
4 changes: 2 additions & 2 deletions mpp/include/mpp_data_mpi.inc
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ integer, parameter :: mpp_from_pe = -999, ptr_from = -999
!-------------------------------------------------------------------!
! The following data is used in mpp_domains_mod and its components !
!-------------------------------------------------------------------!
real(r8_kind), allocatable :: mpp_domains_stack(:) !< stack used to hold data for domain operations
real(r8_kind), allocatable :: mpp_domains_stack_nonblock(:) !< stack used for non-blocking domain operations
real(r8_kind), allocatable, target :: mpp_domains_stack(:) !< stack used to hold data for domain operations
real(r8_kind), allocatable, target :: mpp_domains_stack_nonblock(:) !< stack used for non-blocking domain operations
!--- some dummy variables with dummy values that will never be used
integer, parameter :: ptr_domains_stack = -999
integer, parameter :: ptr_domains_stack_nonblock = -999
Loading
Loading