Skip to content

Commit

Permalink
#2201: temperedlb: filter by isMigratable
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed May 20, 2024
1 parent 6e6c9c1 commit e7581a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/vt/vrt/collection/balance/temperedlb/temperedlb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,9 @@ void TemperedLB::doLBStages(LoadType start_imb) {
// Copy this node's object assignments to a local, mutable copy
cur_objs_.clear();
for (auto obj : *load_model_) {
cur_objs_[obj] = getModeledValue(obj);
if (obj.isMigratable()) {
cur_objs_[obj] = getModeledValue(obj);
}
}

send_edges_.clear();
Expand Down

0 comments on commit e7581a5

Please sign in to comment.