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
I set something in DeepSpeed in order to bypass being all-reduced on all model parameters.
In order words, below is exactly the parameter list I need to bypass doing allreduce:
bypass_list = [x for x in model.parameters() if getattr(param, '_tutel_expert', False) == True]
how DeepSpeed can avoid doing all_reduce for bypass_list above?
The text was updated successfully, but these errors were encountered:
I set something in DeepSpeed in order to bypass being all-reduced on all model parameters.
In order words, below is exactly the parameter list I need to bypass doing allreduce:
bypass_list = [x for x in model.parameters() if getattr(param, '_tutel_expert', False) == True]
how DeepSpeed can avoid doing all_reduce for bypass_list above?
The text was updated successfully, but these errors were encountered: