Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Weinzierl
teaMPI
Commits
c31312f2
Commit
c31312f2
authored
Mar 31, 2020
by
Philipp Samfaß
Browse files
Fixed bug in MPI_Sendrecv (thanks to Alexander)
parent
a128c87d
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/Wrapper.cpp
View file @
c31312f2
...
...
@@ -210,7 +210,7 @@ int MPI_Sendrecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype,
}
}
else
{
//assert(comm == MPI_COMM_WORLD);
MPI_Sendrecv
(
sendbuf
,
sendcount
,
sendtype
,
dest
,
sendtag
,
recvbuf
,
recvcount
,
recvtype
,
source
,
recvtag
,
getTeamComm
(
comm
),
status
);
P
MPI_Sendrecv
(
sendbuf
,
sendcount
,
sendtype
,
dest
,
sendtag
,
recvbuf
,
recvcount
,
recvtype
,
source
,
recvtag
,
getTeamComm
(
comm
),
status
);
}
return
MPI_SUCCESS
;
}
...
...
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