Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
codes
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
38
Issues
38
List
Boards
Labels
Milestones
Merge Requests
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
codes
codes
Commits
1cfd739e
Commit
1cfd739e
authored
Sep 28, 2017
by
Misbah Mubarak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing irecv next event issue
parent
e08008cb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
src/network-workloads/model-net-mpi-replay.c
src/network-workloads/model-net-mpi-replay.c
+6
-7
No files found.
src/network-workloads/model-net-mpi-replay.c
View file @
1cfd739e
...
...
@@ -1320,19 +1320,18 @@ static void codes_exec_mpi_recv(
int
found_matching_sends
=
rm_matching_send
(
s
,
bf
,
m
,
lp
,
recv_op
);
/* for mpi irecvs, this is a non-blocking receive so just post it and move on with the trace read. */
if
(
mpi_op
->
op_type
==
CODES_WK_IRECV
)
{
bf
->
c6
=
1
;
codes_issue_next_event
(
lp
);
}
/* save the req id inserted in the completed queue for reverse computation. */
if
(
found_matching_sends
<
0
)
{
m
->
fwd
.
found_match
=
-
1
;
qlist_add
(
&
recv_op
->
ql
,
&
s
->
pending_recvs_queue
);
/* for mpi irecvs, this is a non-blocking receive so just post it and move on with the trace read. */
if
(
mpi_op
->
op_type
==
CODES_WK_IRECV
)
{
bf
->
c6
=
1
;
codes_issue_next_event
(
lp
);
return
;
}
}
else
{
...
...
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