Skip to content

Commit

Permalink
#1659: lb: use correct statistic when calculating work
Browse files Browse the repository at this point in the history
  • Loading branch information
cz4rs committed Nov 9, 2022
1 parent 549e071 commit 317f055
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/lb_invoke/lb_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ void LBManager::computeStatistics(
for (auto elm : *custom_model_) {
auto work = custom_model_->getModeledLoad(elm, when);
obj_work_model.emplace_back(
LoadData{lb::Statistic::Object_load_modeled, work}
LoadData{lb::Statistic::Object_work_modeled, work}
);
total_work_from_model += work;
}
Expand Down

0 comments on commit 317f055

Please sign in to comment.