Files
sglang/python/sglang/multimodal_gen/runtime/server_args.py
2026-02-16 00:18:31 +08:00

1209 lines
43 KiB
Python

# Copied and adapted from: https://github.com/hao-ai-lab/FastVideo
# SPDX-License-Identifier: Apache-2.0
# Inspired by SGLang: https://github.com/sgl-project/sglang/blob/main/python/sglang/srt/server_args.py
"""The arguments of sglang-diffusion Inference."""
import argparse
import dataclasses
import inspect
import json
import math
import os
import random
import sys
import tempfile
from dataclasses import field
from enum import Enum
from typing import Any, Optional
import addict
import yaml
from sglang.multimodal_gen import envs
from sglang.multimodal_gen.configs.pipeline_configs.base import PipelineConfig
from sglang.multimodal_gen.configs.quantization import NunchakuSVDQuantArgs
from sglang.multimodal_gen.runtime.layers.quantization.configs.nunchaku_config import (
NunchakuConfig,
)
from sglang.multimodal_gen.runtime.platforms import (
AttentionBackendEnum,
current_platform,
)
from sglang.multimodal_gen.runtime.utils.common import (
is_port_available,
is_valid_ipv6_address,
)
from sglang.multimodal_gen.runtime.utils.logging_utils import (
configure_logger,
init_logger,
)
from sglang.multimodal_gen.utils import FlexibleArgumentParser, StoreBoolean
logger = init_logger(__name__)
def _is_torch_tensor(obj: Any) -> tuple[bool, Any]:
"""Return (is_tensor, torch_module_or_None) without importing torch at module import time."""
try:
import torch # type: ignore
return isinstance(obj, torch.Tensor), torch
except Exception:
return False, None
def _sanitize_for_logging(obj: Any, key_hint: str | None = None) -> Any:
"""Recursively convert objects to JSON-serializable forms for concise logging.
Rules:
- Drop any field/dict key named 'param_names_mapping'.
- Render Enums using their value.
- Render torch.Tensor as a compact summary; if key name is 'scaling_factor', include stats.
- Dataclasses are expanded to dicts and sanitized recursively.
- Callables/functions are rendered as their qualified name.
- Fallback to str(...) for unknown types.
"""
# Handle simple types quickly
if obj is None or isinstance(obj, (str, int, float, bool)):
return obj
# Enum -> value for readability
if isinstance(obj, Enum):
return obj.value
# torch.Tensor handling (lazy import)
is_tensor, torch_mod = _is_torch_tensor(obj)
if is_tensor:
try:
ten = obj.detach().cpu()
if key_hint == "scaling_factor":
# Provide a compact, single-line summary for scaling_factor
stats = {
"shape": list(ten.shape),
"dtype": str(ten.dtype),
}
# Stats might fail for some dtypes; guard individually
try:
stats["min"] = float(ten.min().item())
except Exception:
pass
try:
stats["max"] = float(ten.max().item())
except Exception:
pass
try:
stats["mean"] = float(ten.float().mean().item())
except Exception:
pass
return {"tensor": "scaling_factor", **stats}
# Generic tensor summary
return {"tensor": True, "shape": list(ten.shape), "dtype": str(ten.dtype)}
except Exception:
return "<tensor>"
# Dataclasses -> dict
if dataclasses.is_dataclass(obj):
result: dict[str, Any] = {}
for f in dataclasses.fields(obj):
if not f.repr:
continue
name = f.name
if "names_mapping" in name: # drop noisy mappings
continue
try:
value = getattr(obj, name)
except Exception:
continue
result[name] = _sanitize_for_logging(value, key_hint=name)
return result
# Dicts -> sanitize keys/values; drop 'param_names_mapping'
if isinstance(obj, dict):
result_dict: dict[str, Any] = {}
for k, v in obj.items():
try:
key_str = str(k)
except Exception:
key_str = "<key>"
if key_str == "param_names_mapping":
continue
result_dict[key_str] = _sanitize_for_logging(v, key_hint=key_str)
return result_dict
# Sequences/Sets -> list
if isinstance(obj, (list, tuple, set)):
return [_sanitize_for_logging(x) for x in obj]
# Functions / Callables -> qualified name
try:
if inspect.isroutine(obj) or inspect.isclass(obj):
module = getattr(obj, "__module__", "")
qn = getattr(obj, "__qualname__", getattr(obj, "__name__", "<callable>"))
return f"{module}.{qn}" if module else qn
except Exception:
pass
# Fallback: string representation
try:
return str(obj)
except Exception:
return "<unserializable>"
class ExecutionMode(str, Enum):
"""
Enumeration for different pipeline modes.
Inherits from str to allow string comparison for backward compatibility.
"""
INFERENCE = "inference"
@classmethod
def from_string(cls, value: str) -> "ExecutionMode":
"""Convert string to ExecutionMode enum."""
try:
return cls(value.lower())
except ValueError:
raise ValueError(
f"Invalid mode: {value}. Must be one of: {', '.join([m.value for m in cls])}"
) from None
@classmethod
def choices(cls) -> list[str]:
"""Get all available choices as strings for argparse."""
return [mode.value for mode in cls]
class WorkloadType(str, Enum):
"""
Enumeration for different workload types.
Inherits from str to allow string comparison for backward compatibility.
"""
I2V = "i2v" # Image to Video
T2V = "t2v" # Text to Video
T2I = "t2i" # Text to Image
I2I = "i2i" # Image to Image
@classmethod
def from_string(cls, value: str) -> "WorkloadType":
"""Convert string to WorkloadType enum."""
try:
return cls(value.lower())
except ValueError:
raise ValueError(
f"Invalid workload type: {value}. Must be one of: {', '.join([m.value for m in cls])}"
) from None
@classmethod
def choices(cls) -> list[str]:
"""Get all available choices as strings for argparse."""
return [workload.value for workload in cls]
class Backend(str, Enum):
"""
Enumeration for different model backends.
- AUTO: Automatically select backend (prefer sglang native, fallback to diffusers)
- SGLANG: Use sglang's native optimized implementation
- DIFFUSERS: Use vanilla diffusers pipeline (supports all diffusers models)
"""
AUTO = "auto"
SGLANG = "sglang"
DIFFUSERS = "diffusers"
@classmethod
def from_string(cls, value: str) -> "Backend":
"""Convert string to Backend enum."""
try:
return cls(value.lower())
except ValueError:
raise ValueError(
f"Invalid backend: {value}. Must be one of: {', '.join([m.value for m in cls])}"
) from None
@classmethod
def choices(cls) -> list[str]:
"""Get all available choices as strings for argparse."""
return [backend.value for backend in cls]
@dataclasses.dataclass
class ServerArgs:
# Model and path configuration (for convenience)
model_path: str
# Model backend (sglang native or diffusers)
backend: Backend = Backend.AUTO
# Attention
attention_backend: str = None
attention_backend_config: addict.Dict | None = None
cache_dit_config: str | dict[str, Any] | None = (
None # cache-dit config for diffusers
)
# Distributed executor backend
nccl_port: Optional[int] = None
# HuggingFace specific parameters
trust_remote_code: bool = False
revision: str | None = None
# Parallelism
num_gpus: int = 1
tp_size: int = -1
sp_degree: int = -1
# sequence parallelism
ulysses_degree: Optional[int] = None
ring_degree: Optional[int] = None
# data parallelism
# number of data parallelism groups
dp_size: int = 1
# number of gpu in a dp group
dp_degree: int = 1
# cfg parallel
enable_cfg_parallel: bool = False
hsdp_replicate_dim: int = 1
hsdp_shard_dim: int = -1
dist_timeout: int | None = 3600 # 1 hour
pipeline_config: PipelineConfig = field(default_factory=PipelineConfig, repr=False)
# Pipeline override
pipeline_class_name: str | None = (
None # Override pipeline class from model_index.json
)
# LoRA parameters
# (Wenxuan) prefer to keep it here instead of in pipeline config to not make it complicated.
lora_path: str | None = None
lora_nickname: str = "default" # for swapping adapters in the pipeline
lora_scale: float = 1.0 # LoRA scale for merging (e.g., 0.125 for Hyper-SD)
# VAE parameters
vae_path: str | None = None # Custom VAE path (e.g., for distilled autoencoder)
# can restrict layers to adapt, e.g. ["q_proj"]
# Will adapt only q, k, v, o by default.
lora_target_modules: list[str] | None = None
# CPU offload parameters
dit_cpu_offload: bool | None = None
dit_layerwise_offload: bool | None = None
dit_offload_prefetch_size: float = 0.0
text_encoder_cpu_offload: bool | None = None
image_encoder_cpu_offload: bool | None = None
vae_cpu_offload: bool | None = None
use_fsdp_inference: bool = False
pin_cpu_memory: bool = True
# ComfyUI integration
comfyui_mode: bool = False
# Compilation
enable_torch_compile: bool = False
# warmup
warmup: bool = False
warmup_resolutions: list[str] = None
disable_autocast: bool | None = None
# Quantization / Nunchaku SVDQuant configuration
nunchaku_config: NunchakuSVDQuantArgs | NunchakuConfig | None = field(
default_factory=NunchakuSVDQuantArgs, repr=False
)
# Master port for distributed inference
# TODO: do not hard code
master_port: int | None = None
# http server endpoint config
host: str | None = "127.0.0.1"
port: int | None = 30000
# TODO: webui and their endpoint, check if webui_port is available.
webui: bool = False
webui_port: int | None = 12312
scheduler_port: int = 5555
output_path: str | None = "outputs/"
# Prompt text file for batch processing
prompt_file_path: str | None = None
# model paths for correct deallocation
model_paths: dict[str, str] = field(default_factory=dict)
model_loaded: dict[str, bool] = field(
default_factory=lambda: {
"transformer": True,
"vae": True,
"video_vae": True,
"audio_vae": True,
"video_dit": True,
"audio_dit": True,
"dual_tower_bridge": True,
}
)
# # DMD parameters
# dmd_denoising_steps: List[int] | None = field(default=None)
# MoE parameters used by Wan2.2
boundary_ratio: float | None = None
# Logging
log_level: str = "info"
@property
def broker_port(self) -> int:
return self.port + 1
@property
def is_local_mode(self) -> bool:
"""
If no server is running when a generation task begins, 'local_mode' will be enabled: a dedicated server will be launched
"""
return self.host is None or self.port is None
def adjust_quant_config(self):
"""validate and adjust"""
# nunchaku
ncfg = self.nunchaku_config
ncfg.validate()
if not ncfg.enable_svdquant or not ncfg.quantized_model_path:
# if nunchaku is not applied
self.nunchaku_config = None
else:
self.nunchaku_config = NunchakuConfig(
precision=self.nunchaku_config.quantization_precision,
rank=self.nunchaku_config.quantization_rank,
act_unsigned=self.nunchaku_config.quantization_act_unsigned,
quantized_model_path=self.nunchaku_config.quantized_model_path,
)
def adjust_offload(self):
if self.pipeline_config.task_type.is_image_gen():
logger.info(
"Disabling some offloading (except dit, text_encoder) for image generation model"
)
if self.dit_cpu_offload is None:
self.dit_cpu_offload = True
if self.text_encoder_cpu_offload is None:
self.text_encoder_cpu_offload = True
if self.image_encoder_cpu_offload is None:
self.image_encoder_cpu_offload = False
if self.vae_cpu_offload is None:
self.vae_cpu_offload = False
else:
if self.dit_cpu_offload is None:
self.dit_cpu_offload = True
if self.text_encoder_cpu_offload is None:
self.text_encoder_cpu_offload = True
if self.image_encoder_cpu_offload is None:
self.image_encoder_cpu_offload = True
if self.vae_cpu_offload is None:
self.vae_cpu_offload = True
def _parse_attention_backend_config(self, config_str: str) -> dict[str, Any]:
"""parse attention backend config from string."""
if not config_str:
return {}
# 1. treat as file path
if os.path.exists(config_str):
if config_str.endswith((".yaml", ".yml")):
with open(config_str, "r") as f:
return yaml.safe_load(f)
elif config_str.endswith(".json"):
with open(config_str, "r") as f:
return json.load(f)
# 2. treat as JSON string
try:
return json.loads(config_str)
except json.JSONDecodeError:
pass
# 3. treat as k=v pairs (simple implementation). e.g., "sparsity=0.5,enable_x=true"
try:
config = {}
pairs = config_str.split(",")
for pair in pairs:
k, v = pair.split("=", 1)
k = k.strip()
v = v.strip()
if v.lower() == "true":
v = True
elif v.lower() == "false":
v = False
elif v.replace(".", "", 1).isdigit():
v = float(v) if "." in v else int(v)
config[k] = v
return config
except Exception:
raise ValueError(f"Could not parse attention backend config: {config_str}")
def __post_init__(self):
# configure logger before use
configure_logger(server_args=self)
self.adjust_offload()
self.adjust_quant_config()
if self.attention_backend in ["fa3", "fa4"]:
self.attention_backend = "fa"
# normalize attention_backend_config
if self.attention_backend_config is None:
self.attention_backend_config = addict.Dict()
elif isinstance(self.attention_backend_config, str):
self.attention_backend_config = addict.Dict(
self._parse_attention_backend_config(self.attention_backend_config)
)
# handle warmup
if self.warmup_resolutions is not None:
self.warmup = True
if self.warmup:
logger.info(
"Warmup enabled, the launch time is expected to be longer than usual"
)
# network initialization: port and host
self.port = self.settle_port(self.port)
# Add randomization to avoid race condition when multiple servers start simultaneously
initial_scheduler_port = self.scheduler_port + random.randint(0, 100)
self.scheduler_port = self.settle_port(initial_scheduler_port)
# TODO: remove hard code
initial_master_port = (self.master_port or 30005) + random.randint(0, 100)
self.master_port = self.settle_port(initial_master_port, 37)
self.check_server_args()
# log clean server_args
try:
safe_args = _sanitize_for_logging(self, key_hint="server_args")
logger.info("server_args: %s", json.dumps(safe_args, ensure_ascii=False))
except Exception:
# Fallback to default repr if sanitization fails
logger.info(f"server_args: {self}")
@staticmethod
def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
# Model and path configuration
parser.add_argument(
"--model-path",
type=str,
help="The path of the model weights. This can be a local folder or a Hugging Face repo ID.",
)
parser.add_argument(
"--vae-path",
type=str,
default=ServerArgs.vae_path,
help="Custom path to VAE model (e.g., for distilled autoencoder). If not specified, VAE will be loaded from the main model path.",
)
# attention
parser.add_argument(
"--attention-backend",
type=str,
default=None,
help=(
"The attention backend to use. For SGLang-native pipelines, use "
"values like fa, torch_sdpa, sage_attn, etc. For diffusers pipelines, "
"use diffusers attention backend names such as flash, _flash_3_hub, "
"sage, or xformers."
),
)
parser.add_argument(
"--attention-backend-config",
type=str,
default=None,
help="Configuration for the attention backend. Can be a JSON string, a path to a JSON/YAML file, or key=value pairs.",
)
parser.add_argument(
"--diffusers-attention-backend",
type=str,
dest="attention_backend",
default=None,
help=argparse.SUPPRESS,
)
parser.add_argument(
"--cache-dit-config",
type=str,
default=ServerArgs.cache_dit_config,
help="Path to a Cache-DiT YAML/JSON config. Enables cache-dit for diffusers backend.",
)
# HuggingFace specific parameters
parser.add_argument(
"--trust-remote-code",
action=StoreBoolean,
default=ServerArgs.trust_remote_code,
help="Trust remote code when loading HuggingFace models",
)
parser.add_argument(
"--revision",
type=str,
default=ServerArgs.revision,
help="The specific model version to use (can be a branch name, tag name, or commit id)",
)
# Parallelism
parser.add_argument(
"--num-gpus",
type=int,
default=ServerArgs.num_gpus,
help="The number of GPUs to use.",
)
parser.add_argument(
"--tp-size",
type=int,
default=ServerArgs.tp_size,
help="The tensor parallelism size.",
)
parser.add_argument(
"--sp-degree",
type=int,
default=ServerArgs.sp_degree,
help="The sequence parallelism size.",
)
parser.add_argument(
"--ulysses-degree",
type=int,
default=ServerArgs.ulysses_degree,
help="Ulysses sequence parallel degree. Used in attention layer.",
)
parser.add_argument(
"--ring-degree",
type=int,
default=ServerArgs.ring_degree,
help="Ring sequence parallel degree. Used in attention layer.",
)
parser.add_argument(
"--enable-cfg-parallel",
action="store_true",
default=ServerArgs.enable_cfg_parallel,
help="Enable cfg parallel.",
)
parser.add_argument(
"--data-parallel-size",
"--dp-size",
"--dp",
type=int,
default=ServerArgs.dp_size,
help="The data parallelism size.",
)
parser.add_argument(
"--hsdp-replicate-dim",
type=int,
default=ServerArgs.hsdp_replicate_dim,
help="The data parallelism size.",
)
parser.add_argument(
"--hsdp-shard-dim",
type=int,
default=ServerArgs.hsdp_shard_dim,
help="The data parallelism shards.",
)
parser.add_argument(
"--dist-timeout",
type=int,
default=ServerArgs.dist_timeout,
help="Timeout for torch.distributed operations in seconds. "
"Increase this value if you encounter 'Connection closed by peer' errors after the service is idle. ",
)
# Prompt text file for batch processing
parser.add_argument(
"--prompt-file-path",
type=str,
default=ServerArgs.prompt_file_path,
help="Path to a text file containing prompts (one per line) for batch processing",
)
parser.add_argument(
"--mask-strategy-file-path",
type=str,
help="Path to mask strategy JSON file for STA",
)
parser.add_argument(
"--enable-torch-compile",
action=StoreBoolean,
default=ServerArgs.enable_torch_compile,
help="Use torch.compile to speed up DiT inference."
+ "However, will likely cause precision drifts. See (https://github.com/pytorch/pytorch/issues/145213)",
)
# warmup
parser.add_argument(
"--warmup",
action=StoreBoolean,
default=ServerArgs.warmup,
help="Perform some warmup after server starts (if `--warmup-resolutions` is specified) or before processing the first request (if `--warmup-resolutions` is not specified)."
"Recommended to enable when benchmarking to ensure fair comparison and best performance."
"When enabled with `--warmup-resolutions` unspecified, look for the line ending with `(with warmup excluded)` for actual processing time.",
)
parser.add_argument(
"--warmup-resolutions",
type=str,
nargs="+",
default=ServerArgs.warmup_resolutions,
help="Specify resolutions for server to warmup. e.g., `--warmup-resolutions 256x256, 720x720`",
)
parser.add_argument(
"--dit-cpu-offload",
action=StoreBoolean,
help="Use CPU offload for DiT inference. Enable if run out of memory with FSDP.",
)
parser.add_argument(
"--dit-layerwise-offload",
action=StoreBoolean,
default=ServerArgs.dit_layerwise_offload,
help="Enable layerwise CPU offload with async H2D prefetch overlap for supported DiT models (e.g., Wan, MOVA). "
"Cannot be used together with cache-dit (SGLANG_CACHE_DIT_ENABLED), dit_cpu_offload, or use_fsdp_inference.",
)
parser.add_argument(
"--dit-offload-prefetch-size",
type=float,
default=ServerArgs.dit_offload_prefetch_size,
help="The size of prefetch for dit-layerwise-offload. If the value is between 0.0 and 1.0, it is treated as a ratio of the total number of layers. If the value is >= 1, it is treated as the absolute number of layers. 0.0 means prefetch 1 layer (lowest memory). Values above 0.5 might have peak memory close to no offload but worse performance.",
)
parser.add_argument(
"--use-fsdp-inference",
action=StoreBoolean,
help="Use FSDP for inference by sharding the model weights. Latency is very low due to prefetch--enable if run out of memory.",
)
parser.add_argument(
"--text-encoder-cpu-offload",
action=StoreBoolean,
help="Use CPU offload for text encoder. Enable if run out of memory.",
)
parser.add_argument(
"--image-encoder-cpu-offload",
action=StoreBoolean,
help="Use CPU offload for image encoder. Enable if run out of memory.",
)
parser.add_argument(
"--vae-cpu-offload",
action=StoreBoolean,
help="Use CPU offload for VAE. Enable if run out of memory.",
)
parser.add_argument(
"--pin-cpu-memory",
action=StoreBoolean,
help='Pin memory for CPU offload. Only added as a temp workaround if it throws "CUDA error: invalid argument". '
"Should be enabled in almost all cases",
)
parser.add_argument(
"--disable-autocast",
action=StoreBoolean,
help="Disable autocast for denoising loop and vae decoding in pipeline sampling",
)
# Nunchaku SVDQuant quantization parameters
NunchakuSVDQuantArgs.add_cli_args(parser)
# Master port for distributed inference
parser.add_argument(
"--master-port",
type=int,
default=ServerArgs.master_port,
help="Master port for distributed inference. If not set, a random free port will be used.",
)
parser.add_argument(
"--scheduler-port",
type=int,
default=ServerArgs.scheduler_port,
help="Port for the scheduler server.",
)
parser.add_argument(
"--host",
type=str,
default=ServerArgs.host,
help="Host for the HTTP API server.",
)
parser.add_argument(
"--port",
type=int,
default=ServerArgs.port,
help="Port for the HTTP API server.",
)
parser.add_argument(
"--webui",
action=StoreBoolean,
default=ServerArgs.webui,
help="Whether to use webui for better display",
)
parser.add_argument(
"--webui-port",
type=int,
default=ServerArgs.webui_port,
help="Whether to use webui for better display",
)
parser.add_argument(
"--output-path",
type=str,
default=ServerArgs.output_path,
help="Directory path to save generated images/videos",
)
# LoRA
parser.add_argument(
"--lora-path",
type=str,
default=ServerArgs.lora_path,
help="The path to the LoRA adapter weights (can be local file path or HF hub id) to launch with",
)
parser.add_argument(
"--lora-nickname",
type=str,
default=ServerArgs.lora_nickname,
help="The nickname for the LoRA adapter to launch with",
)
parser.add_argument(
"--lora-scale",
type=float,
default=ServerArgs.lora_scale,
help="LoRA scale for merging (e.g., 0.125 for Hyper-SD). Same as lora_scale in Diffusers",
)
# Add pipeline configuration arguments
PipelineConfig.add_cli_args(parser)
# Logging
parser.add_argument(
"--log-level",
type=str,
default=ServerArgs.log_level,
help="The logging level of all loggers.",
)
parser.add_argument(
"--backend",
type=str,
choices=Backend.choices(),
default=ServerArgs.backend.value,
help="The model backend to use. 'auto' prefers sglang native and falls back to diffusers. "
"'sglang' uses native optimized implementation. 'diffusers' uses vanilla diffusers pipeline.",
)
return parser
def url(self):
if is_valid_ipv6_address(self.host):
return f"http://[{self.host}]:{self.port}"
else:
return f"http://{self.host}:{self.port}"
@property
def scheduler_endpoint(self):
"""
Internal endpoint for scheduler.
Prefers the configured host but normalizes localhost -> 127.0.0.1 to avoid ZMQ issues.
"""
scheduler_host = self.host
if scheduler_host is None or scheduler_host == "localhost":
scheduler_host = "127.0.0.1"
return f"tcp://{scheduler_host}:{self.scheduler_port}"
def settle_port(
self, port: int, port_inc: int = 42, max_attempts: int = 100
) -> int:
"""
Find an available port with retry logic.
"""
attempts = 0
original_port = port
while attempts < max_attempts:
if is_port_available(port):
if attempts > 0:
logger.info(
f"Port {original_port} was unavailable, using port {port} instead"
)
return port
attempts += 1
if port < 60000:
port += port_inc
else:
# Wrap around with randomization to avoid collision
port = 5000 + random.randint(0, 1000)
raise RuntimeError(
f"Failed to find available port after {max_attempts} attempts "
f"(started from port {original_port})"
)
@classmethod
def from_cli_args(
cls, args: argparse.Namespace, unknown_args: list[str] | None = None
) -> "ServerArgs":
if unknown_args is None:
unknown_args = []
provided_args = cls.get_provided_args(args, unknown_args)
# Handle config file
config_file = provided_args.get("config")
if config_file:
config_args = cls.load_config_file(config_file)
# Provided args override config file args
provided_args = {**config_args, **provided_args}
# Handle special cases
# if "tp_size" in provided_args:
# provided_args["tp"] = provided_args.pop("tp_size")
return cls.from_dict(provided_args)
@classmethod
def from_dict(cls, kwargs: dict[str, Any]) -> "ServerArgs":
"""Create a ServerArgs object from a dictionary."""
attrs = [attr.name for attr in dataclasses.fields(cls)]
server_args_kwargs: dict[str, Any] = {}
for attr in attrs:
if attr == "pipeline_config":
pipeline_config = PipelineConfig.from_kwargs(kwargs)
logger.debug(f"Using PipelineConfig: {type(pipeline_config)}")
server_args_kwargs["pipeline_config"] = pipeline_config
elif attr == "nunchaku_config":
nunchaku_config = NunchakuSVDQuantArgs.from_dict(kwargs)
server_args_kwargs["nunchaku_config"] = nunchaku_config
elif attr in kwargs:
server_args_kwargs[attr] = kwargs[attr]
return cls(**server_args_kwargs)
@staticmethod
def load_config_file(config_file: str) -> dict[str, Any]:
"""Load a config file."""
if config_file.endswith(".json"):
with open(config_file, "r") as f:
return json.load(f)
elif config_file.endswith((".yaml", ".yml")):
try:
import yaml
except ImportError:
raise ImportError(
"Please install PyYAML to use YAML config files. "
"`pip install pyyaml`"
)
with open(config_file, "r") as f:
return yaml.safe_load(f)
else:
raise ValueError(f"Unsupported config file format: {config_file}")
@classmethod
def from_kwargs(cls, **kwargs: Any) -> "ServerArgs":
# Convert mode string to enum if necessary
if "mode" in kwargs and isinstance(kwargs["mode"], str):
kwargs["mode"] = ExecutionMode.from_string(kwargs["mode"])
# Convert workload_type string to enum if necessary
if "workload_type" in kwargs and isinstance(kwargs["workload_type"], str):
kwargs["workload_type"] = WorkloadType.from_string(kwargs["workload_type"])
# Convert backend string to enum if necessary
if "backend" in kwargs and isinstance(kwargs["backend"], str):
kwargs["backend"] = Backend.from_string(kwargs["backend"])
kwargs["pipeline_config"] = PipelineConfig.from_kwargs(kwargs)
return cls(**kwargs)
@staticmethod
def get_provided_args(
args: argparse.Namespace, unknown_args: list[str]
) -> dict[str, Any]:
"""Get the arguments provided by the user."""
provided_args = {}
# We need to check against the raw command-line arguments to see what was
# explicitly provided by the user, vs. what's a default value from argparse.
raw_argv = sys.argv + unknown_args
# Create a set of argument names that were present on the command line.
# This handles both styles: '--arg=value' and '--arg value'.
provided_arg_names = set()
for arg in raw_argv:
if arg.startswith("--"):
# For '--arg=value', this gets 'arg'; for '--arg', this also gets 'arg'.
arg_name = arg.split("=", 1)[0].replace("-", "_").lstrip("_")
provided_arg_names.add(arg_name)
# Populate provided_args if the argument from the namespace was on the command line.
for k, v in vars(args).items():
if k in provided_arg_names:
provided_args[k] = v
return provided_args
def check_server_sp_args(self):
if self.sp_degree == -1:
# assume we leave all remaining gpus to sp
num_gpus_per_group = self.dp_size * self.tp_size
if self.enable_cfg_parallel:
num_gpus_per_group *= 2
if self.num_gpus % num_gpus_per_group != 0:
raise ValueError(f"{self.num_gpus=} % {num_gpus_per_group} != 0")
self.sp_degree = self.num_gpus // num_gpus_per_group
if (
self.ulysses_degree is None
and self.ring_degree is None
and self.sp_degree != 1
):
self.ulysses_degree = self.sp_degree
logger.info(
f"Automatically set ulysses_degree=sp_degree={self.ulysses_degree} for best performance"
)
if self.ulysses_degree is None:
self.ulysses_degree = 1
logger.debug(
f"Ulysses degree not set, using default value {self.ulysses_degree}"
)
if self.ring_degree is None:
self.ring_degree = 1
logger.debug(f"Ring degree not set, using default value {self.ring_degree}")
if self.ring_degree > 1:
if self.attention_backend is not None and self.attention_backend not in (
"fa",
"sage_attn",
):
raise ValueError(
"Ring Attention is only supported for flash attention or sage attention backend for now"
)
if self.attention_backend is None:
self.attention_backend = "fa"
logger.info(
"Ring Attention is currently only supported for flash attention or sage attention; attention_backend has been automatically set to flash attention"
)
if self.sp_degree == -1:
self.sp_degree = self.ring_degree * self.ulysses_degree
logger.info(
f"sequence_parallel_degree is not provided, using ring_degree * ulysses_degree = {self.sp_degree}"
)
if self.sp_degree != self.ring_degree * self.ulysses_degree:
raise ValueError(
f"sequence_parallel_degree is not equal to ring_degree * ulysses_degree, {self.sp_degree} != {self.ring_degree} * {self.ulysses_degree}"
)
def check_server_dp_args(self):
assert self.num_gpus % self.dp_size == 0, f"{self.num_gpus=}, {self.dp_size=}"
assert self.dp_size >= 1, "--dp-size must be natural number"
# NOTE: disable temporarily
# self.dp_degree = self.num_gpus // self.dp_size
logger.debug(f"Setting dp_degree to: {self.dp_degree}")
if self.dp_size > 1:
raise ValueError("DP is not yet supported")
def check_server_args(self) -> None:
"""Validate inference arguments for consistency"""
# layerwise offload
if current_platform.is_mps():
self.use_fsdp_inference = False
self.dit_layerwise_offload = False
if self.dit_offload_prefetch_size > 1 and (
isinstance(self.dit_offload_prefetch_size, float)
and not self.dit_offload_prefetch_size.is_integer()
):
self.dit_offload_prefetch_size = int(
math.floor(self.dit_offload_prefetch_size)
)
logger.info(
f"Invalid --dit-offload-prefetch-size value passed, truncated to: {self.dit_offload_prefetch_size}"
)
if 0.5 <= self.dit_offload_prefetch_size < 1.0:
logger.info(
f"We do not recommend --dit-offload-prefetch-size to be between 0.5 and 1.0"
)
if not envs.SGLANG_CACHE_DIT_ENABLED:
# TODO: need a better way to tell this
pipeline_name_lower = self.pipeline_config.__class__.__name__.lower()
if (
("wan" in pipeline_name_lower or "mova" in pipeline_name_lower)
and self.dit_layerwise_offload is None
and current_platform.enable_dit_layerwise_offload_for_wan_by_default()
):
logger.info(
f"Automatically enable dit_layerwise_offload for {self.pipeline_config.__class__.__name__} for low memory and performance balance"
)
self.dit_layerwise_offload = True
if self.dit_layerwise_offload:
assert (
self.dit_offload_prefetch_size >= 0.0
), "dit_offload_prefetch_size must be non-negative"
if self.use_fsdp_inference:
logger.warning(
"dit_layerwise_offload is enabled, automatically disabling use_fsdp_inference."
)
self.use_fsdp_inference = False
if self.dit_cpu_offload:
logger.warning(
"dit_layerwise_offload is enabled, automatically disabling dit_cpu_offload."
)
self.dit_cpu_offload = False
if envs.SGLANG_CACHE_DIT_ENABLED:
raise ValueError(
"dit_layerwise_offload cannot be enabled together with cache-dit. "
"cache-dit may reuse skipped blocks whose weights have been released by layerwise offload, "
"causing shape mismatch errors. "
"Please disable either --dit-layerwise-offload or SGLANG_CACHE_DIT_ENABLED."
)
# autocast
if self.disable_autocast is None:
self.disable_autocast = not self.pipeline_config.enable_autocast
else:
self.disable_autocast = False
if self.tp_size == -1:
self.tp_size = 1
if self.hsdp_shard_dim == -1:
self.hsdp_shard_dim = self.num_gpus
assert (
self.sp_degree <= self.num_gpus and self.num_gpus % self.sp_degree == 0
), "num_gpus must >= and be divisible by sp_size"
assert (
self.hsdp_replicate_dim <= self.num_gpus
and self.num_gpus % self.hsdp_replicate_dim == 0
), "num_gpus must >= and be divisible by hsdp_replicate_dim"
assert (
self.hsdp_shard_dim <= self.num_gpus
and self.num_gpus % self.hsdp_shard_dim == 0
), "num_gpus must >= and be divisible by hsdp_shard_dim"
if self.num_gpus < max(self.tp_size, self.sp_degree):
self.num_gpus = max(self.tp_size, self.sp_degree)
if self.pipeline_config is None:
raise ValueError("pipeline_config is not set in ServerArgs")
self.pipeline_config.check_pipeline_config()
if self.attention_backend is None and self.backend != Backend.DIFFUSERS:
self._set_default_attention_backend()
# parallelism
self.check_server_dp_args()
# allocate all remaining gpus for sp-size
self.check_server_sp_args()
if self.enable_cfg_parallel:
if self.num_gpus == 1:
raise ValueError(
"CFG Parallelism is enabled via `--enable-cfg-parallel`, while -num-gpus==1"
)
if os.getenv("SGLANG_CACHE_DIT_ENABLED", "").lower() == "true":
has_sp = self.sp_degree > 1
has_tp = self.tp_size > 1
if has_sp and has_tp:
logger.warning(
"cache-dit is enabled with hybrid parallelism (SP + TP). "
"Proceeding anyway (SGLang integration may support this mode)."
)
def _set_default_attention_backend(self) -> None:
"""Configure ROCm defaults when users do not specify an attention backend."""
if current_platform.is_rocm():
default_backend = AttentionBackendEnum.AITER.name.lower()
self.attention_backend = default_backend
logger.info(
"Attention backend not specified. Using '%s' by default on ROCm "
"to match SGLang SRT defaults.",
default_backend,
)
@dataclasses.dataclass
class PortArgs:
# The ipc filename for scheduler (rank 0) to receive inputs from tokenizer (zmq)
scheduler_input_ipc_name: str
# The port for nccl initialization (torch.dist)
nccl_port: int
# The ipc filename for rpc call between Engine and Scheduler
rpc_ipc_name: str
# The ipc filename for Scheduler to send metrics
metrics_ipc_name: str
# Master port for distributed inference
master_port: int | None = None
@staticmethod
def from_server_args(
server_args: ServerArgs, dp_rank: Optional[int] = None
) -> "PortArgs":
if server_args.nccl_port is None:
nccl_port = server_args.scheduler_port + random.randint(100, 1000)
while True:
if is_port_available(nccl_port):
break
if nccl_port < 60000:
nccl_port += 42
else:
nccl_port -= 43
else:
nccl_port = server_args.nccl_port
# Normal case, use IPC within a single node
return PortArgs(
scheduler_input_ipc_name=f"ipc://{tempfile.NamedTemporaryFile(delete=False).name}",
nccl_port=nccl_port,
rpc_ipc_name=f"ipc://{tempfile.NamedTemporaryFile(delete=False).name}",
metrics_ipc_name=f"ipc://{tempfile.NamedTemporaryFile(delete=False).name}",
master_port=server_args.master_port,
)
_global_server_args = None
def prepare_server_args(argv: list[str]) -> ServerArgs:
"""
Prepare the inference arguments from the command line arguments.
"""
parser = FlexibleArgumentParser()
ServerArgs.add_cli_args(parser)
raw_args = parser.parse_args(argv)
server_args = ServerArgs.from_cli_args(raw_args)
return server_args
def set_global_server_args(server_args: ServerArgs):
"""
Set the global sgl_diffusion config for each process
"""
global _global_server_args
_global_server_args = server_args
def get_global_server_args() -> ServerArgs:
if _global_server_args is None:
# in ci, usually when we test custom ops/modules directly,
# we don't set the sgl_diffusion config. In that case, we set a default
# config.
# TODO(will): may need to handle this for CI.
raise ValueError("Global sgl_diffusion args is not set.")
return _global_server_args