-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove concept of under/overloaded from TemperedWMin #1830
Labels
Comments
cz4rs
added a commit
that referenced
this issue
Jun 17, 2022
cz4rs
added a commit
that referenced
this issue
Jun 20, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 22, 2022
cz4rs
added a commit
that referenced
this issue
Jun 24, 2022
cz4rs
added a commit
that referenced
this issue
Jun 24, 2022
cz4rs
added a commit
that referenced
this issue
Jun 24, 2022
cz4rs
added a commit
that referenced
this issue
Jun 27, 2022
cz4rs
added a commit
that referenced
this issue
Jun 27, 2022
cz4rs
added a commit
that referenced
this issue
Jun 27, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Jun 27, 2022
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
cz4rs
added a commit
that referenced
this issue
Jun 29, 2022
cz4rs
added a commit
that referenced
this issue
Jul 8, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Jul 8, 2022
cz4rs
added a commit
that referenced
this issue
Jul 8, 2022
cz4rs
added a commit
that referenced
this issue
Oct 13, 2022
cz4rs
added a commit
that referenced
this issue
Oct 13, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 19, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Oct 20, 2022
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
cz4rs
added a commit
that referenced
this issue
Dec 21, 2022
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
- extract helper methods and add overloads for TemperedWMin - remove redundant code - remove unused member variable
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
cz4rs
added a commit
that referenced
this issue
Feb 28, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What Needs to be Done?
The implementation of the total work algorithm has been split into multiple issues, starting with #1672 and then continuing with this issue.
TemperedLB
only allows underloaded ranks (those with less than the average load) to initiate the information propagation stage (see existing code commentsUnderloaded start the round
andUnderloaded start the first round
, which are in two different implementations of the inform stage).TemperedWMin
, on the other hand, has no concept of underloaded or overloaded ranks, and should allow all ranks to initiate the information propagation stage (right, @ppebay?). Make code changes to allow these two load balancers to behave differently in this regard.TemperedLB
also restricts potential recipients of work to ranks that are underloaded (or, in some modes, even sufficiently underloaded). Allow all ranks to be considered as potential recipients of work forTemperedWMin
(right, @ppebay?) when building the CMF.The text was updated successfully, but these errors were encountered: