You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

distributed.py 328 B

1234567891011121314151617
  1. # -*- coding: utf-8 -*-
  2. # pylint: disable=redefined-builtin
  3. from ..distributed.functional import (
  4. all_gather,
  5. all_reduce_max,
  6. all_reduce_min,
  7. all_reduce_sum,
  8. all_to_all,
  9. broadcast,
  10. collective_comm,
  11. gather,
  12. reduce_scatter_sum,
  13. reduce_sum,
  14. remote_recv,
  15. remote_send,
  16. scatter,
  17. )