Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
codes-dev
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xin Wang
codes-dev
Commits
3194db49
Commit
3194db49
authored
Jul 20, 2017
by
Xin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix merge issues
parent
e746772e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/network-workloads/model-net-mpi-replay.c
src/network-workloads/model-net-mpi-replay.c
+4
-4
src/workload/methods/codes-dumpi-trace-nw-wrkld.c
src/workload/methods/codes-dumpi-trace-nw-wrkld.c
+1
-1
No files found.
src/network-workloads/model-net-mpi-replay.c
View file @
3194db49
...
...
@@ -695,16 +695,16 @@ static void gen_synthetic_tr(nw_state * s, tw_bf * bf, nw_message * m, tw_lp * l
remote_m
.
fwd
.
sim_start_time
=
tw_now
(
lp
);
remote_m
.
fwd
.
dest_rank
=
dest_svr
[
i
];
remote_m
.
msg_type
=
CLI_BCKGND_ARRIVE
;
remote_m
.
fwd
.
num_bytes
=
payload
;
remote_m
.
fwd
.
num_bytes
=
PAYLOAD_SZ
;
remote_m
.
fwd
.
app_id
=
s
->
app_id
;
remote_m
.
fwd
.
src_rank
=
s
->
local_rank
;
m
->
event_rc
=
model_net_event
(
net_id
,
"synthetic-tr"
,
global_dest_id
,
payload
,
0
.
0
,
m
->
event_rc
=
model_net_event
(
net_id
,
"synthetic-tr"
,
global_dest_id
,
PAYLOAD_SZ
,
0
.
0
,
sizeof
(
nw_message
),
(
const
void
*
)
&
remote_m
,
0
,
NULL
,
lp
);
s
->
gen_data
+=
payload
;
num_syn_bytes_sent
+=
payload
;
s
->
gen_data
+=
PAYLOAD_SZ
;
num_syn_bytes_sent
+=
PAYLOAD_SZ
;
}
/* New event after MEAN_INTERVAL */
...
...
src/workload/methods/codes-dumpi-trace-nw-wrkld.c
View file @
3194db49
...
...
@@ -24,7 +24,7 @@
#ifdef ENABLE_CORTEX_PYTHON
#include <cortex/cortex-python.h>
#endif
#define PROFILE_TYPE cortex_dumpi_profile*
#define PROFILE_TYPE
struct
cortex_dumpi_profile*
//#define UNDUMPI_OPEN cortex_undumpi_open
#define DUMPI_START_STREAM_READ cortex_dumpi_start_stream_read
#define UNDUMPI_CLOSE cortex_undumpi_close
...
...
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