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
Quick discussion point. I want to add a prefix_sum collective and am realizing how many collective helpers we have added to the comm. Do you think we should move this out to keep comm from getting so cluttered?
Current list that we have in com::
all_reduce_sum
all_reduce_max
all_reduce_min
all_reduce
I want to add prefix_sum, but I suspect these will also be very handy in the future:
bcast
is_same
We could shorten the all_reduce_* to just min/max/sum/and/or
@steiltre @bwpriest
Quick discussion point. I want to add a prefix_sum collective and am realizing how many collective helpers we have added to the comm. Do you think we should move this out to keep comm from getting so cluttered?
Current list that we have in com::
I want to add prefix_sum, but I suspect these will also be very handy in the future:
Example usage would be:
EDIT: We could start this by not actually moving the comm::all_reduce* but keeping them and marking them as deprecated and remove later.
The text was updated successfully, but these errors were encountered: