Skip to content
Snippets Groups Projects
Commit d6f88bba authored by Peter W. Draper's avatar Peter W. Draper
Browse files

Don't skip the ghost tasks when partitioning

parent 5d5b4e5a
Branches
Tags
1 merge request!176Tasks cleanup
...@@ -455,7 +455,8 @@ static void repart_edge_metis(int partweights, int bothweights, int nodeID, ...@@ -455,7 +455,8 @@ static void repart_edge_metis(int partweights, int bothweights, int nodeID,
/* Skip un-interesting tasks. */ /* Skip un-interesting tasks. */
if (t->type != task_type_self && t->type != task_type_pair && if (t->type != task_type_self && t->type != task_type_pair &&
t->type != task_type_sub_self && t->type != task_type_sub_self && t->type != task_type_sub_self && t->type != task_type_sub_self &&
t->type != task_type_kick && t->type != task_type_init) t->type != task_type_ghost && t->type != task_type_kick &&
t->type != task_type_init)
continue; continue;
/* Get the task weight. This can be slightly negative on multiple board /* Get the task weight. This can be slightly negative on multiple board
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment