Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
yaxt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
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
yaxt
Commits
563f9795
Commit
563f9795
authored
5 years ago
by
Thomas Jahns
Browse files
Options
Downloads
Patches
Plain Diff
Simplify construct.
parent
86f27abe
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/test_redist_single_array_base_parallel_f.f90
+5
-7
5 additions, 7 deletions
tests/test_redist_single_array_base_parallel_f.f90
with
5 additions
and
7 deletions
tests/test_redist_single_array_base_parallel_f.f90
+
5
−
7
View file @
563f9795
...
...
@@ -181,13 +181,11 @@ CONTAINS
CALL
test_redist_single_array_base
(
send_msgs
,
recv_msgs
,
src_data
,
&
ref_dst_data
,
mpi_comm_world
)
IF
(
comm_rank
==
0
)
THEN
DO
i
=
1
,
comm_size
CALL
MPI_Type_free
(
send_msgs
(
i
)
%
datatype
,
ierror
)
IF
(
ierror
/
=
mpi_success
)
&
CALL
test_abort
(
"error calling mpi_type_free"
,
filename
,
__
LINE__
)
END
DO
END
IF
DO
i
=
1
,
nsend
CALL
MPI_Type_free
(
send_msgs
(
i
)
%
datatype
,
ierror
)
IF
(
ierror
/
=
mpi_success
)
&
CALL
test_abort
(
"error calling mpi_type_free"
,
filename
,
__
LINE__
)
END
DO
END
SUBROUTINE
test_scatter
...
...
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