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
Rob Latham
MPICH-BlueGene
Commits
960a9c8a
Commit
960a9c8a
authored
Nov 17, 2014
by
Junchao Zhang
Browse files
Fix an arg name in MPI_Comm_set_info
No reviewer
parent
23c3ed3a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/binding/fortran/use_mpi_f08/mpi_f08.F90
View file @
960a9c8a
...
...
@@ -1557,11 +1557,11 @@ interface MPI_Comm_set_attr
end
interface
MPI_Comm_set_attr
interface
MPI_Comm_set_info
subroutine
MPI_Comm_set_info_f08
(
comm
,
info
_used
,
ierror
)
subroutine
MPI_Comm_set_info_f08
(
comm
,
info
,
ierror
)
use
::
mpi_f08_types
,
only
:
MPI_Comm
,
MPI_Info
implicit
none
type
(
MPI_Comm
),
intent
(
in
)
::
comm
type
(
MPI_Info
),
intent
(
in
)
::
info
_used
type
(
MPI_Info
),
intent
(
in
)
::
info
integer
,
optional
,
intent
(
out
)
::
ierror
end
subroutine
MPI_Comm_set_info_f08
end
interface
MPI_Comm_set_info
...
...
Write
Preview
Markdown
is supported
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