mindspore.mint.distributed.get_backend ========================================== .. image:: https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/master/resource/_static/logo_source.svg :target: https://gitee.com/mindspore/mindspore/blob/master/docs/api/api_python/mint/mindspore.mint.distributed.get_backend.rst :alt: 查看源文件 .. py:function:: mindspore.mint.distributed.get_backend(group=None) 在指定通信组中获取当前分布式后端的名称。 .. note:: 当前仅支持一种后端类型。后端类型包含 ``"hccl"`` 、 ``"nccl"`` 和 ``"mccl"`` ,当前仅支持 ``"hccl"`` 和 ``"mccl"`` 。 参数: - **group** (str,可选) - 通信组名称,通常由 :func:`mindspore.mint.distributed.new_group` 方法创建,如果为 ``None`` , Ascend平台表示为 ``"hccl_world_group"`` 。 默认值: ``None`` 。 返回: str,分布式后端的名称。 异常: - **TypeError** - 参数 `group` 不是字符串。 样例: .. note:: .. include:: mindspore.mint.comm_note.txt