[Misc] Add a model loader that utilizes HCCL for weight loading (#2888)
### What this PR does / why we need it? This PR introduces a new model loader called Netloader, which leverages high-bandwidth P2P direct transfer between NPU cards to achieve weight loading. Netloader is implemented as a plugin through the newly added 'register_model_loader' function in vLLM 0.10. It facilitates the process of weight loading by sending weights from a pre-loaded model (server) to an empty model of a newly started instance (client). The server operates concurrently with normal inference tasks through sub-threads and the 'stateless_init_torch_distributed_process_group' in vLLM. The client initiates a transfer request after verifying that the model and partitioning method are the same as the server's, and uses HCCL's collective communication (send/recv) to load the weights in the order they are stored in the model. Application Scenarios: 1. Significantly Reduces Inference Instance Startup Time By reusing the weights of already loaded instances and performing high-speed transfers directly between computing cards, this method reduces model loading latency compared to traditional remote/local pull methods. 2. Reduces Network and Storage Pressure Avoids the need to repeatedly download weight files from remote repositories, reducing the impact on centralized storage and network traffic, thereby enhancing overall system stability and service quality. 3. Improves Resource Utilization and Reduces Costs Accelerating the loading process reduces reliance on redundant computing pools, allowing computing resources to be elastically scaled and reclaimed as needed. 4. Enhances Business Continuity and High Availability In fault recovery scenarios, new instances can quickly take over existing services, avoiding prolonged business interruptions and improving the system's high availability and user experience. ### Does this PR introduce _any_ user-facing change? Netloader utilizes the existing --load-format=netloader and --model-loader-extra-config to be activated. The model-loader-extra-config needs to be input as a JSON string (as it is now) Afterwards, you can check whether the outputs for the same sentence are consistent when the temperature is set to 0. Signed-off-by: destinysky <kangrui10@126.com> - vLLM version: v0.11.0rc3 - vLLM main: https://github.com/vllm-project/vllm/commit/v0.11.0 --------- Signed-off-by: destinysky <kangrui10@126.com>
This commit is contained in:
408
vllm_ascend/model_loader/netloader/interaction/elastic.py
Normal file
408
vllm_ascend/model_loader/netloader/interaction/elastic.py
Normal file
@@ -0,0 +1,408 @@
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
|
||||
import json
|
||||
import re
|
||||
import socket
|
||||
import threading
|
||||
from typing import List, Optional, Tuple
|
||||
|
||||
import torch
|
||||
from vllm.logger import logger
|
||||
|
||||
from ..executor.elastic_load import P2PSend
|
||||
from ..utils import find_free_port
|
||||
|
||||
|
||||
class ElasticClient:
|
||||
"""
|
||||
Class for handling the client-side logic of Netloader of models.
|
||||
"""
|
||||
|
||||
def __init__(self, sources: list[str], device_id: int, model_path: str,
|
||||
tp: int, pp: int):
|
||||
"""
|
||||
Initializes the ElasticClient instance.
|
||||
|
||||
Parameters:
|
||||
- sources: List of source addresses in the format IP:port.
|
||||
- device_id: The ID of the current device.
|
||||
- model_path: The path to the model.
|
||||
- tp: Tensor parallel size.
|
||||
- pp: Pipeline parallel size.
|
||||
"""
|
||||
self.sources = sources
|
||||
self.device_id = device_id
|
||||
self.model_path = model_path
|
||||
self.tp = tp
|
||||
self.pp = pp
|
||||
|
||||
self.s: Optional[socket.socket] = None
|
||||
self.ack: Optional[Tuple[str, int]] = None
|
||||
self.server_addr: Optional[str] = None
|
||||
self.server_port: Optional[int] = None
|
||||
|
||||
for source in self.sources:
|
||||
try:
|
||||
ip, port_str = source.split(':')
|
||||
port = int(port_str)
|
||||
except Exception as e:
|
||||
logger.error(f"IP format error: {source}, detail: {e}")
|
||||
continue
|
||||
|
||||
self.server_addr = ip
|
||||
self.server_port = port
|
||||
|
||||
try:
|
||||
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
logger.info(
|
||||
f"Start connection to server: {self.server_addr}:{self.server_port}"
|
||||
)
|
||||
sock.connect((self.server_addr, self.server_port))
|
||||
logger.info(
|
||||
f"Finish connection to server: {self.server_addr}:{self.server_port}"
|
||||
)
|
||||
sock.settimeout(60)
|
||||
|
||||
self.s = sock
|
||||
self.ack = self.register(device_id, model_path, tp, pp)
|
||||
break
|
||||
except Exception as e:
|
||||
logger.error(f"Connect to {source} fails, detail: {e}")
|
||||
if sock is not None:
|
||||
try:
|
||||
sock.close()
|
||||
except Exception:
|
||||
pass
|
||||
self.s = None
|
||||
self.ack = None
|
||||
self.server_addr = None
|
||||
self.server_port = None
|
||||
|
||||
def close(self) -> None:
|
||||
"""
|
||||
Closes the socket connection.
|
||||
"""
|
||||
if self.s is not None:
|
||||
try:
|
||||
self.s.close()
|
||||
except Exception as e:
|
||||
logger.error(f"Error closing socket: {e}")
|
||||
finally:
|
||||
self.s = None
|
||||
|
||||
def __enter__(self) -> "ElasticClient":
|
||||
"""
|
||||
Context manager enter method.
|
||||
"""
|
||||
return self
|
||||
|
||||
def __exit__(self, exc_type, exc_val, exc_tb) -> None:
|
||||
"""
|
||||
Context manager exit method.
|
||||
"""
|
||||
self.close()
|
||||
|
||||
def __del__(self):
|
||||
"""
|
||||
Destructor method to ensure socket is closed.
|
||||
"""
|
||||
try:
|
||||
self.close()
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
def send_str(self, data_str: str) -> None:
|
||||
"""
|
||||
Sends a string over the socket connection.
|
||||
|
||||
Parameters:
|
||||
- data_str: The string to be sent.
|
||||
"""
|
||||
if self.s is None:
|
||||
raise RuntimeError("Socket was not created correctly.")
|
||||
self.s.send(data_str.encode("utf-8"))
|
||||
|
||||
def recv_str(self, buffer_size: int = 1024) -> str:
|
||||
"""
|
||||
Receives a string over the socket connection.
|
||||
|
||||
Parameters:
|
||||
- buffer_size: The size of the buffer for receiving data.
|
||||
|
||||
Returns:
|
||||
- The received string.
|
||||
"""
|
||||
if self.s is None:
|
||||
raise RuntimeError("Socket was not created correctly.")
|
||||
data_str = self.s.recv(buffer_size).decode("utf-8")
|
||||
return data_str
|
||||
|
||||
def register(self, device_id: int, model_path: str, tp: int,
|
||||
pp: int) -> Tuple[str, int]:
|
||||
"""
|
||||
Registers the client with the server.
|
||||
|
||||
Parameters:
|
||||
- device_id: The ID of the current device.
|
||||
- model_path: The path to the model.
|
||||
- tp: Tensor parallel size.
|
||||
- pp: Pipeline parallel size.
|
||||
|
||||
Returns:
|
||||
- A tuple containing the communication name and port.
|
||||
"""
|
||||
free_port = find_free_port()
|
||||
data = {
|
||||
"label": "JOIN",
|
||||
"content": {
|
||||
'device_id': device_id,
|
||||
'model_path': model_path,
|
||||
'tp': tp,
|
||||
'pp': pp,
|
||||
'port': free_port
|
||||
}
|
||||
}
|
||||
|
||||
try:
|
||||
self.send_str(json.dumps(data))
|
||||
except Exception as e:
|
||||
raise RuntimeError(
|
||||
f"Send data {data} to server fails, detail: {e}")
|
||||
|
||||
try:
|
||||
ack_str = self.recv_str()
|
||||
except Exception as e:
|
||||
raise RuntimeError(f"Receive data from server fails, detail: {e}")
|
||||
|
||||
try:
|
||||
ack = json.loads(ack_str)
|
||||
except Exception as e:
|
||||
raise RuntimeError(
|
||||
f"Receive data {ack_str} cannot be converted to JSON format, detail: {e}"
|
||||
)
|
||||
|
||||
logger.info(f"Receive ack: {ack}")
|
||||
|
||||
if ("label" in ack and ack["label"] == 'JOIN_ACK' and "content" in ack
|
||||
and ack["content"] is not None and "name" in ack["content"]):
|
||||
return (ack["content"]["name"], free_port)
|
||||
elif ("label" in ack and ack["label"] == 'JOIN_NACK'
|
||||
and "content" in ack):
|
||||
raise RuntimeError(
|
||||
f"Receive nack from server, reason: {ack['content']}")
|
||||
else:
|
||||
raise RuntimeError(
|
||||
f"Receive ack {ack} from server does not contain required fields"
|
||||
)
|
||||
|
||||
|
||||
class ElasticServer:
|
||||
"""
|
||||
Class for handling the server-side logic of Netloader of models.
|
||||
"""
|
||||
|
||||
def __init__(self, addr: str, port: int, model, device_id: int,
|
||||
model_path: str, tp: int, pp: int, int8_cache: str,
|
||||
int8_cache_name: Optional[List[str]]):
|
||||
"""
|
||||
Initializes the ElasticServer instance.
|
||||
|
||||
Parameters:
|
||||
- addr: The IP address to listen on.
|
||||
- port: The port number to listen on.
|
||||
- model: The model to be served.
|
||||
- device_id: The ID of the current device (i.e. global rank).
|
||||
- model_path: The path to the model.
|
||||
- tp: Tensor parallel size.
|
||||
- pp: Pipeline parallel size.
|
||||
- int8_cache: The type of caching for int8 parameters (HBM, DRAM, or no).
|
||||
- int8_cache_name: List of parameter names to be cached.
|
||||
"""
|
||||
self.addr = addr
|
||||
self.port = port
|
||||
self.s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
self.s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
||||
self.s.bind((self.addr, self.port))
|
||||
self.s.listen(256)
|
||||
|
||||
self.model = model
|
||||
self.device_id = device_id
|
||||
self.model_path = model_path
|
||||
self.tp = tp
|
||||
self.pp = pp
|
||||
|
||||
self.original_int8 = {}
|
||||
int8_pattern = "|".join(
|
||||
map(re.escape,
|
||||
int8_cache_name)) if int8_cache_name is not None else "(?:)"
|
||||
for name, param in self.model.named_parameters():
|
||||
if param.dtype == torch.int8:
|
||||
if int8_cache == 'hbm':
|
||||
if int8_cache_name is None or (
|
||||
int8_cache_name is not None
|
||||
and re.search(int8_pattern, name) is not None):
|
||||
try:
|
||||
self.original_int8[name] = param.data.clone(
|
||||
).detach()
|
||||
except RuntimeError as e:
|
||||
logger.error(
|
||||
f"Failed to cache int8 tensor {name} to HBM, change to DRAM, due to {e}"
|
||||
)
|
||||
self.original_int8[name] = param.data.cpu()
|
||||
|
||||
elif int8_cache == 'dram':
|
||||
if int8_cache_name is None or (
|
||||
int8_cache_name is not None
|
||||
and re.search(int8_pattern, name) is not None):
|
||||
self.original_int8[name] = param.data.cpu()
|
||||
elif int8_cache == 'no':
|
||||
pass
|
||||
else:
|
||||
logger.warning(
|
||||
f"int8_cache should be selected in [HBM, DRAM], but got {int8_cache}, change to no cache"
|
||||
)
|
||||
|
||||
logger.info(
|
||||
f"Server {self.addr}:{self.port} starts, device id: {self.device_id}, model path: {self.model_path}, tp: {self.tp}, pp: {self.pp}, int8 params {self.original_int8.keys()} are saved to {int8_cache}"
|
||||
)
|
||||
|
||||
def __del__(self):
|
||||
"""
|
||||
Destructor method to ensure socket is closed.
|
||||
"""
|
||||
self.s.close()
|
||||
|
||||
def start(self):
|
||||
"""
|
||||
Starts the server to handle incoming connections.
|
||||
"""
|
||||
handler_thread = threading.Thread(target=self.elastic_client_handler)
|
||||
handler_thread.daemon = True
|
||||
handler_thread.start()
|
||||
|
||||
def elastic_client_handler(self):
|
||||
"""
|
||||
Handles incoming client connections.
|
||||
"""
|
||||
while True:
|
||||
conn, addr = self.s.accept()
|
||||
logger.info("Accept new connection from {}:{}...".format(*addr))
|
||||
self.register_handler(conn, addr)
|
||||
|
||||
def register_handler(self, conn, addr, buffer_size=1024):
|
||||
"""
|
||||
Handles the registration of a client.
|
||||
|
||||
Parameters:
|
||||
- conn: The connection socket.
|
||||
- addr: The address of the client.
|
||||
- buffer_size: The size of the buffer for receiving data.
|
||||
"""
|
||||
data_str = conn.recv(buffer_size).decode("utf-8")
|
||||
if not data_str:
|
||||
return
|
||||
try:
|
||||
data = json.loads(data_str)
|
||||
except Exception:
|
||||
logger.error(f"Failed to load {data_str} as JSON string")
|
||||
conn.close()
|
||||
return
|
||||
|
||||
def is_valid_data(data):
|
||||
"""
|
||||
Validates the received data.
|
||||
|
||||
Parameters:
|
||||
- data: The data to be validated.
|
||||
|
||||
Returns:
|
||||
- True if the data is valid, otherwise False.
|
||||
"""
|
||||
if not isinstance(data, dict):
|
||||
return False
|
||||
if data.get("label") != "JOIN":
|
||||
return False
|
||||
content = data.get("content")
|
||||
if not isinstance(content, dict):
|
||||
return False
|
||||
required_keys = ["device_id", "model_path", "tp", "pp", "port"]
|
||||
if not all(k in content for k in required_keys):
|
||||
return False
|
||||
port = content["port"]
|
||||
if not (isinstance(port, int) or
|
||||
(isinstance(port, str) and port.isdigit())):
|
||||
return False
|
||||
return True
|
||||
|
||||
comm_name = None
|
||||
if is_valid_data(data):
|
||||
device_id = int(data["content"]["device_id"])
|
||||
model_path = data["content"]["model_path"]
|
||||
tp = int(data["content"]["tp"])
|
||||
pp = int(data["content"]["pp"])
|
||||
|
||||
if int(self.device_id
|
||||
) == device_id and self.model_path == model_path and int(
|
||||
self.tp) == tp and int(self.pp) == pp:
|
||||
comm_name = str(addr[0]) + ":" + str(addr[1])
|
||||
ack = {"label": "JOIN_ACK", "content": {"name": comm_name}}
|
||||
else:
|
||||
logger.warning(
|
||||
f"Received data {(device_id, model_path, tp, pp)} does not consist with this server {(int(self.device_id), self.model_path, int(self.tp), int(self.pp))}"
|
||||
)
|
||||
ack = {
|
||||
"label":
|
||||
"JOIN_NACK",
|
||||
"content":
|
||||
f"Received data {(device_id, model_path, tp, pp)} does not consist with this server {(int(self.device_id), self.model_path, int(self.tp), int(self.pp))}"
|
||||
}
|
||||
else:
|
||||
logger.warning(
|
||||
f"Received data does not contain required fields: {data}")
|
||||
ack = {
|
||||
"label":
|
||||
"JOIN_NACK",
|
||||
"content":
|
||||
f"Received data does not contain required fields: {data}"
|
||||
}
|
||||
|
||||
try:
|
||||
ack_str = json.dumps(ack).encode("utf-8")
|
||||
except Exception as e:
|
||||
logger.error(
|
||||
f"Failed to convert {ack} to JSON format, details: {e}")
|
||||
conn.close()
|
||||
return
|
||||
|
||||
try:
|
||||
conn.send(ack_str)
|
||||
except Exception as e:
|
||||
logger.error(f"Failed to send {ack} to {addr}, details: {e}")
|
||||
conn.close()
|
||||
return
|
||||
|
||||
if ack["content"] and isinstance(ack["content"],
|
||||
dict) and 'name' in ack["content"]:
|
||||
try:
|
||||
p2psend = P2PSend(self.addr, data["content"]["port"],
|
||||
ack["content"]["name"])
|
||||
p2psend.send(self.model, self.original_int8)
|
||||
except Exception as e:
|
||||
logger.error(
|
||||
f"P2PSend Failed to send model to {self.addr}, details: {e}"
|
||||
)
|
||||
conn.close()
|
||||
Reference in New Issue
Block a user