Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
T
teaMPI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Iterations
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Analytics
Analytics
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Tobias Weinzierl
teaMPI
Commits
c31312f2
Commit
c31312f2
authored
Mar 31, 2020
by
Philipp Samfaß
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in MPI_Sendrecv (thanks to Alexander)
parent
a128c87d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lib/Wrapper.cpp
lib/Wrapper.cpp
+1
-1
No files found.
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