Skip to content

Commit

Permalink
#1460: temperedlb: fix inappropriate use of tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
nlslatt committed May 11, 2022
1 parent 4fd20e1 commit 33c4120
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vt/vrt/collection/balance/temperedlb/temperedlb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ void TemperedLB::runLB(TimeType total_load) {
}

if (avg > 0.0000000001) {
should_lb = max > run_temperedlb_tolerance * target_max_load_;
should_lb = max > (run_temperedlb_tolerance + 1.0) * target_max_load_;
}

if (theContext()->getNode() == 0) {
Expand Down

0 comments on commit 33c4120

Please sign in to comment.