170 lines
6.1 KiB
Python
170 lines
6.1 KiB
Python
import contextlib
|
|
import logging
|
|
from typing import Optional, Tuple
|
|
|
|
import torch
|
|
|
|
from sglang.srt.environ import envs
|
|
from sglang.srt.layers.moe.utils import speculative_moe_backend_context
|
|
from sglang.srt.managers.tp_worker import TpModelWorker
|
|
from sglang.srt.server_args import ServerArgs
|
|
from sglang.srt.speculative.eagle_utils import TreeMaskMode
|
|
from sglang.srt.speculative.eagle_worker_v2 import EagleDraftWorker, EAGLEWorkerV2
|
|
from sglang.srt.speculative.spec_info import SpeculativeAlgorithm
|
|
from sglang.srt.speculative.spec_utils import draft_tp_context
|
|
from sglang.srt.utils import empty_context, get_bool_env_var, is_cuda
|
|
|
|
if is_cuda():
|
|
from sgl_kernel import segment_packbits # noqa: F401
|
|
|
|
logger = logging.getLogger(__name__)
|
|
SGLANG_RETURN_ORIGINAL_LOGPROB = get_bool_env_var("SGLANG_RETURN_ORIGINAL_LOGPROB")
|
|
|
|
|
|
def _get_plan_stream(
|
|
device: str,
|
|
) -> Tuple[any, contextlib.AbstractContextManager]:
|
|
if envs.SGLANG_ENABLE_OVERLAP_PLAN_STREAM.get():
|
|
plan_stream = torch.get_device_module(device).Stream()
|
|
plan_stream_ctx = torch.get_device_module(device).stream(plan_stream)
|
|
return plan_stream, plan_stream_ctx
|
|
else:
|
|
return None, contextlib.nullcontext()
|
|
|
|
|
|
class StandaloneDraftWorker(EagleDraftWorker):
|
|
"""Custom EagleDraftWorker that doesn't share embeddings/lm_head with target model."""
|
|
|
|
def __init__(
|
|
self,
|
|
server_args: ServerArgs,
|
|
gpu_id: int,
|
|
tp_rank: int,
|
|
dp_rank: int,
|
|
moe_ep_rank: int,
|
|
nccl_port: int,
|
|
target_worker: TpModelWorker,
|
|
):
|
|
# copy args
|
|
self.server_args = server_args
|
|
self.gpu_id = gpu_id
|
|
self.tp_rank = tp_rank
|
|
self.dp_rank = dp_rank
|
|
self.moe_ep_rank = moe_ep_rank
|
|
self.nccl_port = nccl_port
|
|
self.target_worker = target_worker
|
|
|
|
# Args for easy access
|
|
self.device = server_args.device
|
|
self.topk = server_args.speculative_eagle_topk
|
|
self.speculative_num_steps = server_args.speculative_num_steps
|
|
self.speculative_num_draft_tokens = server_args.speculative_num_draft_tokens
|
|
self.speculative_algorithm = SpeculativeAlgorithm.from_string(
|
|
server_args.speculative_algorithm
|
|
)
|
|
|
|
# Set constant
|
|
from sglang.srt.speculative.eagle_info import EagleDraftInput
|
|
|
|
EagleDraftInput.ALLOC_LEN_PER_DECODE = max(
|
|
self.speculative_num_steps * self.topk, self.speculative_num_draft_tokens
|
|
)
|
|
|
|
# Do not capture cuda graph in `TpModelWorker` init,
|
|
# will capture later with init_cuda_graphs()
|
|
backup_disable_cuda_graph = server_args.disable_cuda_graph
|
|
server_args.disable_cuda_graph = True
|
|
|
|
# Share the allocator with a target worker.
|
|
# Draft and target worker own their own KV cache pools.
|
|
self.req_to_token_pool, self.token_to_kv_pool_allocator = (
|
|
target_worker.get_memory_pool()
|
|
)
|
|
with empty_context():
|
|
# Init draft worker
|
|
self.draft_worker = TpModelWorker(
|
|
server_args=server_args,
|
|
gpu_id=gpu_id,
|
|
tp_rank=tp_rank,
|
|
pp_rank=0, # FIXME
|
|
dp_rank=dp_rank,
|
|
moe_ep_rank=moe_ep_rank,
|
|
nccl_port=nccl_port,
|
|
is_draft_worker=True,
|
|
req_to_token_pool=self.req_to_token_pool,
|
|
token_to_kv_pool_allocator=self.token_to_kv_pool_allocator,
|
|
)
|
|
|
|
# Alias for better readability
|
|
self.draft_runner = self.draft_worker.model_runner
|
|
|
|
self.init_token_map()
|
|
self.init_lm_head()
|
|
|
|
# Init attention backend and cuda graphs
|
|
self.draft_runner.server_args.disable_cuda_graph = backup_disable_cuda_graph
|
|
self.draft_tp_context = (
|
|
draft_tp_context if server_args.enable_dp_attention else empty_context
|
|
)
|
|
with self.draft_tp_context(
|
|
self.draft_runner.tp_group
|
|
), speculative_moe_backend_context():
|
|
self.init_attention_backend()
|
|
self.init_cuda_graphs()
|
|
self.tree_mask_mode = TreeMaskMode.FULL_MASK
|
|
|
|
self.plan_stream, self.plan_stream_ctx = _get_plan_stream(self.device)
|
|
|
|
def init_lm_head(self):
|
|
"""Override to prevent sharing embeddings and lm_head with target model."""
|
|
# For standalone worker, we don't share embeddings and lm_head
|
|
# The draft model uses its own embeddings and lm_head
|
|
pass
|
|
|
|
|
|
class StandaloneWorkerV2(EAGLEWorkerV2):
|
|
|
|
def __init__(
|
|
self,
|
|
server_args: ServerArgs,
|
|
gpu_id: int,
|
|
tp_rank: int,
|
|
dp_rank: Optional[int],
|
|
moe_ep_rank: int,
|
|
nccl_port: int,
|
|
target_worker: TpModelWorker,
|
|
):
|
|
# Parse arguments
|
|
self.server_args = server_args
|
|
self.topk = server_args.speculative_eagle_topk
|
|
self.speculative_num_steps = server_args.speculative_num_steps
|
|
self.speculative_num_draft_tokens = server_args.speculative_num_draft_tokens
|
|
self.enable_nan_detection = server_args.enable_nan_detection
|
|
self.gpu_id = gpu_id
|
|
self.device = server_args.device
|
|
self._target_worker = target_worker
|
|
self.page_size = server_args.page_size
|
|
self.speculative_algorithm = SpeculativeAlgorithm.from_string(
|
|
server_args.speculative_algorithm
|
|
)
|
|
|
|
self.req_to_token_pool, self.token_to_kv_pool_allocator = (
|
|
target_worker.get_memory_pool()
|
|
)
|
|
|
|
# Override the context length of the draft model to be the same as the target model.
|
|
server_args.context_length = target_worker.model_runner.model_config.context_len
|
|
|
|
# Create our custom draft worker that doesn't share embeddings/lm_head
|
|
self._draft_worker = StandaloneDraftWorker(
|
|
server_args, gpu_id, tp_rank, dp_rank, moe_ep_rank, nccl_port, target_worker
|
|
)
|
|
|
|
# Some dummy tensors
|
|
self.num_new_pages_per_topk = torch.empty(
|
|
(), dtype=torch.int64, device=self.device
|
|
)
|
|
self.extend_lens = torch.empty((), dtype=torch.int64, device=self.device)
|
|
|
|
self.plan_stream, self.plan_stream_ctx = _get_plan_stream(self.device)
|