2025-02-05 10:53:12 +08:00
|
|
|
#
|
|
|
|
|
# Copyright (c) 2025 Huawei Technologies Co., Ltd. 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.
|
2025-04-17 14:59:56 +08:00
|
|
|
# This file is a part of the vllm-ascend project.
|
2025-02-05 10:53:12 +08:00
|
|
|
#
|
2025-02-17 11:42:33 +08:00
|
|
|
from typing import Optional
|
2025-02-05 10:53:12 +08:00
|
|
|
|
|
|
|
|
import torch
|
2025-02-17 11:42:33 +08:00
|
|
|
from torch.distributed import ProcessGroup
|
|
|
|
|
from vllm.distributed.device_communicators.base_device_communicator import \
|
|
|
|
|
DeviceCommunicatorBase
|
2025-02-05 10:53:12 +08:00
|
|
|
|
|
|
|
|
|
2025-02-17 11:42:33 +08:00
|
|
|
class NPUCommunicator(DeviceCommunicatorBase):
|
2025-02-11 19:15:35 +08:00
|
|
|
|
2025-02-17 11:42:33 +08:00
|
|
|
def __init__(self,
|
|
|
|
|
cpu_group: ProcessGroup,
|
|
|
|
|
device: Optional[torch.device] = None,
|
|
|
|
|
device_group: Optional[ProcessGroup] = None,
|
|
|
|
|
unique_name: str = ""):
|
|
|
|
|
super().__init__(cpu_group, device, device_group, unique_name)
|
2025-04-17 14:57:52 +08:00
|
|
|
# TODO(hz): Refer to CudaCommunicator's implementation to integrate PyHcclCommunicator
|
2025-03-03 09:23:13 +08:00
|
|
|
# init device according to rank
|
|
|
|
|
self.device = torch.npu.current_device()
|