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
d9375649
Commit
d9375649
authored
Mar 29, 2018
by
Misbah Mubarak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug fix for optimistic mode for mpi-replay layer
parent
8de53c54
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
91 additions
and
117 deletions
+91
-117
src/network-workloads/model-net-mpi-replay.c
src/network-workloads/model-net-mpi-replay.c
+89
-114
src/workload/codes-workload.c
src/workload/codes-workload.c
+1
-2
src/workload/methods/codes-online-comm-wrkld.C
src/workload/methods/codes-online-comm-wrkld.C
+1
-1
No files found.
src/network-workloads/model-net-mpi-replay.c
View file @
d9375649
This diff is collapsed.
Click to expand it.
src/workload/codes-workload.c
View file @
d9375649
...
...
@@ -227,7 +227,6 @@ void codes_workload_get_next(
return
;
}
/* ask generator for the next operation */
method_array
[
wkld_id
]
->
codes_workload_get_next
(
app_id
,
rank
,
op
);
assert
(
op
->
op_type
);
...
...
@@ -253,7 +252,7 @@ void codes_workload_get_next_rc(
}
assert
(
tmp
);
tmp_op
=
(
struct
rc_op
*
)
calloc
(
1
,
sizeof
(
*
tmp
_op
));
tmp_op
=
(
struct
rc_op
*
)
malloc
(
sizeof
(
struct
rc
_op
));
assert
(
tmp_op
);
tmp_op
->
op
=
*
op
;
tmp_op
->
next
=
tmp
->
lifo
;
...
...
src/workload/methods/codes-online-comm-wrkld.C
View file @
d9375649
...
...
@@ -25,7 +25,7 @@
#define ALLREDUCE_SHORT_MSG_SIZE 2048
#define DBG_COMM 0
//
#define DBG_COMM 0
using
namespace
std
;
...
...
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