Skip to content
Snippets Groups Projects
Commit e2f9cb78 authored by Moritz Hanke's avatar Moritz Hanke
Browse files

adds support for raw data exchange to user interface

parent 91bd567e
No related branches found
No related tags found
No related merge requests found
...@@ -886,6 +886,7 @@ AS_VAR_IF([enable_mci], [yes], ...@@ -886,6 +886,7 @@ AS_VAR_IF([enable_mci], [yes],
tests/mci/test_dummy_coupling7_c.sh tests/mci/test_dummy_coupling7_c.sh
tests/mci/test_dummy_coupling8_c.sh tests/mci/test_dummy_coupling8_c.sh
tests/mci/test_dummy_coupling9.sh tests/mci/test_dummy_coupling9.sh
tests/mci/test_dummy_coupling_raw.sh
tests/mci/test_dynamic_config.sh tests/mci/test_dynamic_config.sh
tests/mci/test_init_comm_final.sh tests/mci/test_init_comm_final.sh
tests/mci/test_init_final.sh tests/mci/test_init_final.sh
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -38,6 +38,7 @@ test_SCRIPTS_ = \ ...@@ -38,6 +38,7 @@ test_SCRIPTS_ = \
test_dummy_coupling7_c.sh \ test_dummy_coupling7_c.sh \
test_dummy_coupling8_c.sh \ test_dummy_coupling8_c.sh \
test_dummy_coupling9.sh \ test_dummy_coupling9.sh \
test_dummy_coupling_raw.sh \
test_dynamic_config.sh \ test_dynamic_config.sh \
test_init_comm_final.sh \ test_init_comm_final.sh \
test_init_final.sh \ test_init_final.sh \
...@@ -86,6 +87,9 @@ check_PROGRAMS += \ ...@@ -86,6 +87,9 @@ check_PROGRAMS += \
test_dummy_coupling_c.x \ test_dummy_coupling_c.x \
test_dummy_coupling_dble.x \ test_dummy_coupling_dble.x \
test_dummy_coupling_real.x \ test_dummy_coupling_real.x \
test_dummy_coupling_raw_c.x \
test_dummy_coupling_raw_dble.x \
test_dummy_coupling_raw_real.x \
test_instance_parallel2.x \ test_instance_parallel2.x \
test_instance_parallel3.x \ test_instance_parallel3.x \
test_instance_parallel4.x \ test_instance_parallel4.x \
...@@ -168,7 +172,8 @@ test_dummy_coupling5.log: test_dummy_coupling4_c.log ...@@ -168,7 +172,8 @@ test_dummy_coupling5.log: test_dummy_coupling4_c.log
test_dummy_coupling4_c.log: test_dummy_coupling3_c.log test_dummy_coupling4_c.log: test_dummy_coupling3_c.log
test_dummy_coupling3_c.log: test_dummy_coupling3.log test_dummy_coupling3_c.log: test_dummy_coupling3.log
test_dummy_coupling3.log: test_dummy_coupling2_c.log test_dummy_coupling3.log: test_dummy_coupling2_c.log
test_dummy_coupling2_c.log: test_dummy_coupling.log test_dummy_coupling2_c.log: test_dummy_coupling_raw.log
test_dummy_coupling_raw.log: test_dummy_coupling.log
test_dummy_coupling.log: test_def_points.log test_dummy_coupling.log: test_def_points.log
test_def_points.log: test_def_mask.log test_def_points.log: test_def_mask.log
test_def_mask.log: test_def_grid.log test_def_mask.log: test_def_grid.log
...@@ -291,6 +296,14 @@ test_dummy_coupling7_real_x_LDADD = $(FCLDADD) ...@@ -291,6 +296,14 @@ test_dummy_coupling7_real_x_LDADD = $(FCLDADD)
test_dummy_coupling7_real_x_SOURCES = test_dummy_coupling7_real.F90 test_dummy_coupling7.inc test_dummy_coupling7_real_x_SOURCES = test_dummy_coupling7_real.F90 test_dummy_coupling7.inc
test_dummy_coupling7_real.$(OBJEXT): $(utest_FCDEPS) test_dummy_coupling7.inc test_dummy_coupling7_real.$(OBJEXT): $(utest_FCDEPS) test_dummy_coupling7.inc
test_dummy_coupling_raw_dble_x_LDADD = $(FCLDADD)
test_dummy_coupling_raw_dble_x_SOURCES = test_dummy_coupling_raw_dble.F90 test_dummy_coupling_raw.inc
test_dummy_coupling_raw_dble.$(OBJEXT): $(utest_FCDEPS) test_dummy_coupling_raw.inc
test_dummy_coupling_raw_real_x_LDADD = $(FCLDADD)
test_dummy_coupling_raw_real_x_SOURCES = test_dummy_coupling_raw_real.F90 test_dummy_coupling_raw.inc
test_dummy_coupling_raw_real.$(OBJEXT): $(utest_FCDEPS) test_dummy_coupling_raw.inc
test_restart_c_x_LDADD = $(top_builddir)/src/utils/libyac_utils.a $(LDADD) test_restart_c_x_LDADD = $(top_builddir)/src/utils/libyac_utils.a $(LDADD)
test_restart_dble_x_LDADD = $(top_builddir)/src/utils/libyac_utils.a $(FCLDADD) test_restart_dble_x_LDADD = $(top_builddir)/src/utils/libyac_utils.a $(FCLDADD)
......
This diff is collapsed.
#!@SHELL@
# Copyright (c) 2024 The YAC Authors
#
# SPDX-License-Identifier: CC0-1.0
set -e
@TEST_MPI_FALSE@exit 77
@MPI_LAUNCH@ -n 4 ./test_dummy_coupling_raw_dble.x
@MPI_LAUNCH@ -n 4 ./test_dummy_coupling_raw_real.x
@MPI_LAUNCH@ -n 4 ./test_dummy_coupling_raw_c.x
This diff is collapsed.
! Copyright (c) 2024 The YAC Authors
!
! SPDX-License-Identifier: BSD-3-Clause
#define TEST_PRECISION SELECTED_REAL_KIND(15, 307)
#define MOD_NAME mo_test_dummy_coupling_raw_dble
#define YAC_PTR_TYPE yac_dble_ptr
#define TEST_GET_ASYNC
#include "test_dummy_coupling_raw.inc"
! Copyright (c) 2024 The YAC Authors
!
! SPDX-License-Identifier: BSD-3-Clause
#define TEST_PRECISION SELECTED_REAL_KIND(6, 37)
#define MOD_NAME mo_test_dummy_coupling_raw_real
#define YAC_PTR_TYPE yac_real_ptr
!#define TEST_GET_ASYNC
#include "test_dummy_coupling_raw.inc"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment