You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when you work with the GreedyScheduler, every item in the collection has to get put! into and take!en from a Channel which has a lot of overhead if individual iterations are fast.
We could get around this by adding an option to make the greedy scheduler operate on chunks of the the collection instead of items in the collection e.g.
Currently when you work with the
GreedyScheduler
, every item in the collection has to getput!
into andtake!
en from aChannel
which has a lot of overhead if individual iterations are fast.We could get around this by adding an option to make the greedy scheduler operate on chunks of the the collection instead of items in the collection e.g.
would be the equivalent of
The text was updated successfully, but these errors were encountered: