Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
codes
codes
Commits
52903ae2
Commit
52903ae2
authored
Jul 19, 2016
by
Jonathan Jenkins
Browse files
use "global" rank for debug message printing
parent
06a7bce8
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/network-workloads/model-net-mpi-replay.c
View file @
52903ae2
...
...
@@ -879,11 +879,11 @@ static void codes_exec_mpi_send(nw_state* s,
if
(
mpi_op
->
op_type
==
CODES_WK_ISEND
)
{
fprintf
(
workload_log
,
"
\n
(%lf) APP %d MPI ISEND SOURCE %ld DEST %ld BYTES %ld "
,
tw_now
(
lp
),
s
->
app_id
,
s
->
nw_id
,
mpi_op
->
u
.
send
.
dest_rank
,
mpi_op
->
u
.
send
.
num_bytes
);
tw_now
(
lp
),
s
->
app_id
,
s
->
nw_id
,
global_
dest_rank
,
mpi_op
->
u
.
send
.
num_bytes
);
}
else
fprintf
(
workload_log
,
"
\n
(%lf) APP ID %d MPI SEND SOURCE %ld DEST %ld BYTES %ld "
,
tw_now
(
lp
),
s
->
app_id
,
s
->
nw_id
,
mpi_op
->
u
.
send
.
dest_rank
,
mpi_op
->
u
.
send
.
num_bytes
);
tw_now
(
lp
),
s
->
app_id
,
s
->
nw_id
,
global_
dest_rank
,
mpi_op
->
u
.
send
.
num_bytes
);
}
/* isend executed, now get next MPI operation from the queue */
if
(
mpi_op
->
op_type
==
CODES_WK_ISEND
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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