205 lines
6.8 KiB
Python
205 lines
6.8 KiB
Python
# Copied and adapted from: https://github.com/hao-ai-lab/FastVideo
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import multiprocessing as mp
|
|
import os
|
|
import time
|
|
from typing import List
|
|
|
|
import torch
|
|
from setproctitle import setproctitle
|
|
|
|
from sglang.multimodal_gen.runtime.distributed import (
|
|
get_sp_group,
|
|
maybe_init_distributed_environment_and_model_parallel,
|
|
)
|
|
from sglang.multimodal_gen.runtime.distributed.parallel_state import (
|
|
get_cfg_group,
|
|
get_tp_group,
|
|
)
|
|
from sglang.multimodal_gen.runtime.pipelines_core import Req, build_pipeline
|
|
from sglang.multimodal_gen.runtime.pipelines_core.schedule_batch import OutputBatch
|
|
from sglang.multimodal_gen.runtime.server_args import PortArgs, ServerArgs
|
|
from sglang.multimodal_gen.runtime.utils.common import set_cuda_arch
|
|
from sglang.multimodal_gen.runtime.utils.logging_utils import (
|
|
configure_logger,
|
|
globally_suppress_loggers,
|
|
init_logger,
|
|
)
|
|
from sglang.multimodal_gen.runtime.utils.perf_logger import (
|
|
PerformanceLogger,
|
|
RequestTimings,
|
|
)
|
|
|
|
logger = init_logger(__name__)
|
|
|
|
|
|
class GPUWorker:
|
|
"""
|
|
A worker that executes the model on a single GPU.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
local_rank: int,
|
|
rank: int,
|
|
master_port: int,
|
|
server_args: ServerArgs,
|
|
):
|
|
self.local_rank = local_rank
|
|
self.rank = rank
|
|
self.master_port = master_port
|
|
# FIXME: should we use tcp as distribute init method?
|
|
self.server_args = server_args
|
|
self.pipeline = None
|
|
|
|
self.init_device_and_model()
|
|
self.sp_group = get_sp_group()
|
|
self.sp_cpu_group = self.sp_group.cpu_group
|
|
self.tp_group = get_tp_group()
|
|
self.tp_cpu_group = self.tp_group.cpu_group
|
|
|
|
self.cfg_group = get_cfg_group()
|
|
self.cfg_cpu_group = self.cfg_group.cpu_group
|
|
|
|
def init_device_and_model(self) -> None:
|
|
"""Initialize the device and load the model."""
|
|
setproctitle(f"sgl_diffusion::scheduler_TP{self.local_rank}")
|
|
torch.cuda.set_device(self.local_rank)
|
|
# Set environment variables for distributed initialization
|
|
os.environ["MASTER_ADDR"] = "localhost"
|
|
os.environ["MASTER_PORT"] = str(self.master_port)
|
|
os.environ["LOCAL_RANK"] = str(self.local_rank)
|
|
os.environ["RANK"] = str(self.rank)
|
|
os.environ["WORLD_SIZE"] = str(self.server_args.num_gpus)
|
|
# Initialize the distributed environment
|
|
maybe_init_distributed_environment_and_model_parallel(
|
|
tp_size=self.server_args.tp_size,
|
|
enable_cfg_parallel=self.server_args.enable_cfg_parallel,
|
|
ulysses_degree=self.server_args.ulysses_degree,
|
|
ring_degree=self.server_args.ring_degree,
|
|
sp_size=self.server_args.sp_degree,
|
|
dp_size=self.server_args.dp_size,
|
|
)
|
|
|
|
self.pipeline = build_pipeline(self.server_args)
|
|
|
|
logger.info(
|
|
f"Worker {self.rank}: Initialized device, model, and distributed environment."
|
|
)
|
|
|
|
def execute_forward(self, batch: List[Req]) -> OutputBatch:
|
|
"""
|
|
Execute a forward pass.
|
|
"""
|
|
assert self.pipeline is not None
|
|
# TODO: dealing with first req for now
|
|
req = batch[0]
|
|
output_batch = None
|
|
try:
|
|
start_time = time.monotonic()
|
|
timings = RequestTimings(request_id=req.request_id)
|
|
req.timings = timings
|
|
|
|
output_batch = self.pipeline.forward(req, self.server_args)
|
|
duration_ms = (time.monotonic() - start_time) * 1000
|
|
|
|
if output_batch.timings:
|
|
output_batch.timings.total_duration_ms = duration_ms
|
|
PerformanceLogger.log_request_summary(timings=output_batch.timings)
|
|
except Exception as e:
|
|
logger.error(
|
|
f"Error executing request {req.request_id}: {e}", exc_info=True
|
|
)
|
|
if output_batch is None:
|
|
from sglang.multimodal_gen.runtime.pipelines_core.schedule_batch import (
|
|
OutputBatch,
|
|
)
|
|
|
|
output_batch = OutputBatch()
|
|
output_batch.error = f"Error executing request {req.request_id}: {e}"
|
|
finally:
|
|
return output_batch
|
|
|
|
def set_lora(
|
|
self, lora_nickname: str, lora_path: str | None = None, target: str = "all"
|
|
) -> None:
|
|
"""
|
|
Set the LoRA adapter for the pipeline.
|
|
|
|
Args:
|
|
lora_nickname: The nickname of the adapter.
|
|
lora_path: Path to the LoRA adapter.
|
|
target: Which transformer(s) to apply the LoRA to.
|
|
"""
|
|
assert self.pipeline is not None
|
|
self.pipeline.set_lora(lora_nickname, lora_path, target)
|
|
|
|
def merge_lora_weights(self, target: str = "all") -> None:
|
|
"""
|
|
Merge LoRA weights.
|
|
|
|
Args:
|
|
target: Which transformer(s) to merge.
|
|
"""
|
|
assert self.pipeline is not None
|
|
self.pipeline.merge_lora_weights(target)
|
|
|
|
def unmerge_lora_weights(self, target: str = "all") -> None:
|
|
"""
|
|
Unmerge LoRA weights.
|
|
|
|
Args:
|
|
target: Which transformer(s) to unmerge.
|
|
"""
|
|
assert self.pipeline is not None
|
|
self.pipeline.unmerge_lora_weights(target)
|
|
|
|
|
|
def run_scheduler_process(
|
|
local_rank: int,
|
|
rank: int,
|
|
master_port: int,
|
|
server_args: ServerArgs,
|
|
pipe_writer: mp.connection.Connection,
|
|
# For all workers: pipe to receive tasks from rank 0
|
|
task_pipe_r: mp.connection.Connection,
|
|
# For slave workers: pipe to send results back to rank 0
|
|
result_pipe_w: mp.connection.Connection | None,
|
|
# For rank 0 worker only: pipes to send tasks to slaves
|
|
task_pipes_to_slaves: list[mp.connection.Connection] | None = None,
|
|
# For rank 0 worker only: pipes to receive results from slaves
|
|
result_pipes_from_slaves: list[mp.connection.Connection] | None = None,
|
|
) -> None:
|
|
"""
|
|
The entry point for the worker process.
|
|
Rank 0 acts as the master, handling ZMQ requests and coordinating slaves.
|
|
Ranks > 0 act as slaves, waiting for tasks from the master.
|
|
"""
|
|
configure_logger(server_args)
|
|
globally_suppress_loggers()
|
|
set_cuda_arch()
|
|
|
|
port_args = PortArgs.from_server_args(server_args)
|
|
|
|
# start the scheduler event loop
|
|
assert task_pipes_to_slaves is not None
|
|
assert result_pipes_from_slaves is not None
|
|
from sglang.multimodal_gen.runtime.managers.scheduler import Scheduler
|
|
|
|
scheduler = Scheduler(
|
|
server_args,
|
|
gpu_id=rank,
|
|
port_args=port_args,
|
|
task_pipes_to_slaves=task_pipes_to_slaves,
|
|
result_pipes_from_slaves=result_pipes_from_slaves,
|
|
)
|
|
logger.info(f"Worker {rank}: Scheduler loop started.")
|
|
pipe_writer.send(
|
|
{
|
|
"status": "ready",
|
|
}
|
|
)
|
|
scheduler.event_loop()
|
|
logger.info(f"Worker {rank}: Shutdown complete.")
|