Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Thomas Jahns
yaxt
Commits
563f9795
Commit
563f9795
authored
Feb 21, 2020
by
Thomas Jahns
🤸
Browse files
Simplify construct.
parent
86f27abe
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/test_redist_single_array_base_parallel_f.f90
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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment