broadcast_object_list#
- composer.utils.dist.broadcast_object_list(object_list, src=0)[source]#
Broadcasts picklable objects in
object_list
to the whole group.Similar to
broadcast()
, but Python objects can be passed in. Note that all objects inobject_list
must be picklable in order to be broadcasted.See also
- Parameters
- Returns
None โ
object_list
will be modified in-place and set to values ofobject_list
from thesrc
rank.