Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
batsim
batsim
Commits
3cc2346b
Commit
3cc2346b
authored
Jan 26, 2017
by
Millian Poquet
Browse files
Fix bad printf
parent
d0c38c52
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/jobs_execution.cpp
View file @
3cc2346b
...
...
@@ -192,7 +192,7 @@ int execute_profile(BatsimContext *context,
xbt_assert
(
nb_ranks
==
(
int
)
job
->
smpi_ranks_to_hosts_mapping
.
size
(),
"Invalid job %s: SMPI ranks_to_host mapping has an invalid size, as it should "
"use %d MPI ranks but the ranking states that there are %d ranks."
,
job
->
id
,
nb_ranks
,
(
int
)
job
->
smpi_ranks_to_hosts_mapping
.
size
());
job
->
id
.
c_str
()
,
nb_ranks
,
(
int
)
job
->
smpi_ranks_to_hosts_mapping
.
size
());
for
(
int
i
=
0
;
i
<
nb_ranks
;
++
i
)
{
...
...
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