Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
batsim
batsim
Commits
5427adcb
Commit
5427adcb
authored
Jan 26, 2017
by
Millian Poquet
Browse files
Fix bad printf
parent
3cc2346b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/workload.cpp
View file @
5427adcb
...
@@ -93,7 +93,8 @@ void Workload::register_smpi_applications()
...
@@ -93,7 +93,8 @@ void Workload::register_smpi_applications()
SmpiProfileData
*
data
=
(
SmpiProfileData
*
)
profile
->
data
;
SmpiProfileData
*
data
=
(
SmpiProfileData
*
)
profile
->
data
;
string
job_id_str
=
name
+
"!"
+
to_string
(
job
->
number
);
string
job_id_str
=
name
+
"!"
+
to_string
(
job
->
number
);
XBT_INFO
(
"Registering app. instance='%s', nb_process=%d"
,
job_id_str
.
c_str
(),
data
->
trace_filenames
.
size
());
XBT_INFO
(
"Registering app. instance='%s', nb_process=%d"
,
job_id_str
.
c_str
(),
(
int
)
data
->
trace_filenames
.
size
());
SMPI_app_instance_register
(
job_id_str
.
c_str
(),
smpi_replay_process
,
data
->
trace_filenames
.
size
());
SMPI_app_instance_register
(
job_id_str
.
c_str
(),
smpi_replay_process
,
data
->
trace_filenames
.
size
());
}
}
}
}
...
...
Write
Preview
Supports
Markdown
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