Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YAC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dkrz-sw
YAC
Commits
74a8dc4b
Commit
74a8dc4b
authored
2 years ago
by
Moritz Hanke
Browse files
Options
Downloads
Patches
Plain Diff
fixes some compiler warnings
parent
36f78c52
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
tests/test_dummy_coupling6_dble.f90
+0
-1
0 additions, 1 deletion
tests/test_dummy_coupling6_dble.f90
tests/test_dummy_coupling6_real.f90
+0
-1
0 additions, 1 deletion
tests/test_dummy_coupling6_real.f90
tests/test_restart_dble.f90
+8
-9
8 additions, 9 deletions
tests/test_restart_dble.f90
with
8 additions
and
11 deletions
tests/test_dummy_coupling6_dble.f90
+
0
−
1
View file @
74a8dc4b
...
...
@@ -226,7 +226,6 @@ CONTAINS
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_vertices
=
(/
2
,
3
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
cyclic
=
(/
0
,
0
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_cells
=
(/
1
,
2
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_vertices_per_cell
=
(/
3
,
3
/)
REAL
(
wp
),
DIMENSION
(
2
),
PARAMETER
::
&
x_vertices
=
(/
-0.5
*
YAC_RAD
,
0.5
*
YAC_RAD
/)
REAL
(
wp
),
DIMENSION
(
3
),
PARAMETER
::
&
...
...
This diff is collapsed.
Click to expand it.
tests/test_dummy_coupling6_real.f90
+
0
−
1
View file @
74a8dc4b
...
...
@@ -226,7 +226,6 @@ CONTAINS
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_vertices
=
(/
2
,
3
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
cyclic
=
(/
0
,
0
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_cells
=
(/
1
,
2
/)
INTEGER
,
DIMENSION
(
2
),
PARAMETER
::
nbr_vertices_per_cell
=
(/
3
,
3
/)
REAL
(
wp
),
DIMENSION
(
2
),
PARAMETER
::
&
x_vertices
=
(/
-0.5
*
YAC_RAD
,
0.5
*
YAC_RAD
/)
REAL
(
wp
),
DIMENSION
(
3
),
PARAMETER
::
&
...
...
This diff is collapsed.
Click to expand it.
tests/test_restart_dble.f90
+
8
−
9
View file @
74a8dc4b
...
...
@@ -69,17 +69,18 @@
!
MODULE
field_data
DOUBLE PRECISION
,
ALLOCATABLE
::
field_out_data
(:,:)
DOUBLE PRECISION
,
ALLOCATABLE
::
field_in_data
(:,:)
INTEGER
::
field_data_size
INTEGER
::
point_id
IMPLICIT
NONE
DOUBLE PRECISION
,
ALLOCATABLE
,
PUBLIC
::
field_out_data
(:,:)
DOUBLE PRECISION
,
ALLOCATABLE
,
PUBLIC
::
field_in_data
(:,:)
INTEGER
,
PUBLIC
::
field_data_size
INTEGER
,
PUBLIC
::
point_id
=
HUGE
(
0
)
END
MODULE
PROGRAM
main
USE
utest
USE
mo_yac_finterface
USE
field_data
USE
field_data
,
ONLY
:
field_out_data
,
field_in_data
,
field_data_size
,
point_id
IMPLICIT
NONE
...
...
@@ -88,8 +89,6 @@ PROGRAM main
CALL
start_test
(
'dummy_restart_dble'
)
point_id
=
HUGE
(
point_id
)
! run the models multiple time to check whether yac can be restarted
! coupling only in one direction
...
...
@@ -210,7 +209,7 @@ END PROGRAM
SUBROUTINE
generate_icon_grid
(
comm_rank
,
comm_size
)
USE
mo_yac_finterface
USE
field_data
USE
field_data
,
ONLY
:
field_out_data
,
field_in_data
,
field_data_size
,
point_id
USE
,
INTRINSIC
::
iso_c_binding
,
ONLY
:
c_loc
IMPLICIT
NONE
...
...
@@ -431,7 +430,7 @@ END SUBROUTINE generate_icon_grid
SUBROUTINE
generate_cube_grid
(
comm_rank
,
comm_size
)
USE
mo_yac_finterface
USE
field_data
USE
field_data
,
ONLY
:
field_out_data
,
field_in_data
,
field_data_size
,
point_id
USE
,
INTRINSIC
::
iso_c_binding
,
ONLY
:
c_loc
IMPLICIT
NONE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment