cluster_v2.py 3.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2022 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

15 16
from enum import IntEnum, unique

17 18
import numpy as np

19
from paddle.framework import core
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46


@unique
class DeviceType(IntEnum):
    UNKNOWN = 0
    CPU = 1
    GPU = 2
    XPU = 3
    DCU = 5
    NIC = 6


@unique
class LinkType(IntEnum):
    UNKNOWN = 0
    LOC = 1
    SYS = 2
    PHB = 3
    PIX = 4
    PIB = 5
    NVL = 6
    NVB = 7
    NET = 8


class DeviceMesh(core.DeviceMesh):
    r"""
47
    The class `DeviceMesh` describes the topology of physical devices.
48 49

    Args:
C
chenxujun 已提交
50
        mesh (list|numpy.array): an N-dimensional array describes the topology
51 52 53
            of logical processes.
        dim_names (list, optional): the i-th element of this list gives the name of the
            i-th dimension.
54

55 56 57 58 59 60
    Returns:
        None

    Examples:
        .. code-block:: python

61 62 63
            >>> # doctest: +REQUIRES(env:DISTRIBUTED)
            >>> import paddle
            >>> import paddle.distributed as dist
64

65
            >>> paddle.enable_static()
66

67 68 69
            >>> mesh = dist.DeviceMesh([[2, 4, 5], [0, 1, 3]])
            >>> assert mesh.shape == [2, 3]
            >>> assert mesh.device_ids == [2, 4, 5, 0, 1, 3]
70 71 72 73 74 75

    """

    def __init__(self, name, mesh, dim_names=None):
        self._name = name

76
        if not isinstance(mesh, list) and not isinstance(mesh, np.ndarray):
77
            raise ValueError(
78 79
                'The mesh must be an instance of list or np.ndarray.'
            )
80 81 82 83 84 85 86 87
        if isinstance(mesh, list):
            mesh = np.array(mesh)

        self._mesh = mesh

        self._shape = list(self._mesh.shape)

        self._device_ids = self._mesh.flatten().tolist()
88 89 90 91 92 93
        assert all(
            isinstance(p, int) for p in self._device_ids
        ), "All elements of the mesh be integer"
        assert (
            min(self._device_ids) >= 0
        ), 'All elements of the mesh must be >= 0.'
94 95
        unique_device_ids = set(self._device_ids)
        assert len(unique_device_ids) == len(
96 97
            self._device_ids
        ), 'All elements of the mesh must be unique.'
98 99

        if dim_names is not None:
100 101 102
            assert len(dim_names) == len(
                self._shape
            ), "The length of dims_names must be same as the shape of the mesh."
103 104 105 106 107
            self._dim_names = dim_names
        else:
            self._dim_names = ["d" + str(i) for i in range(len(self._shape))]

        # Follow the requirement for using pybind11
108 109 110
        core.DeviceMesh.__init__(
            self, self._name, self._shape, self._device_ids, self._dim_names
        )
111 112 113 114 115 116

    @property
    def mesh(self):
        return self._mesh


117
# class Cluster:
118 119 120 121 122 123 124 125 126 127 128 129
#     """
#     The cluster represents the hardware resource.
#     """

#     def __init__(self):
#         self._device_meshes = {}

#     def device_mesh(self, device_mesh_name):
#         return self._device_meshes[device_mesh_name]

#     def add_device_mesh(self, device_mesh):
#         self._device_meshes[device_mesh.name] = device_mesh