59a0a3844c
PR Test AMD / cancel-on-close (push) Has been skipped
PR Test NVIDIA ARM / scan (push) Has been skipped
PR Test NVIDIA / cancel-on-close (push) Has been skipped
PR Test AMD / scan (push) Has been skipped
PR Test NVIDIA ARM / cancel-on-close (push) Has been skipped
PR Test NVIDIA / scan (push) Has been skipped
Release Docker Images / build (cu129-torch-2.11.0) (push) Has been skipped
Release Docker Images / build (cu130-torch-2.11.0) (push) Has been skipped
Release PyPI / publish (push) Has been skipped
Scheduler Python Test / test (push) Successful in 27m19s
Docs / build (push) Successful in 28m8s
Scheduler C++ Test / test (push) Successful in 28m19s
Scheduler C++ Test / test-flat (push) Successful in 28m18s
Docs / deploy (push) Has been cancelled
PR Test AMD / finish (push) Has been cancelled
PR Test NVIDIA / finish (push) Has been cancelled
PR Test NVIDIA ARM / finish (push) Has been cancelled
PR Test NVIDIA ARM / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test AMD / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
PR Test NVIDIA / ${{ matrix.name }} (${{ matrix.runner }}) (push) Has been cancelled
165 lines
6.1 KiB
Python
165 lines
6.1 KiB
Python
# Copyright (c) 2026 LightSeek Foundation
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
|
|
"""POSIX SHM handle for cross-process multimodal feature tensors.
|
|
|
|
The lifecycle keeps the unlink race-free for tensor-parallel ranks while still
|
|
allowing the model-side multimodal planner to deduplicate requests before any
|
|
large payload copy happens:
|
|
|
|
``publish`` (producer) -> ``attach`` (every rank, before barrier) ->
|
|
``consume`` (only encoder misses) or ``release`` (deduplicated aliases).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import logging
|
|
import time
|
|
from dataclasses import dataclass, field
|
|
from multiprocessing import shared_memory
|
|
|
|
import torch
|
|
|
|
from tokenspeed.runtime.utils.env import envs
|
|
|
|
logger = logging.getLogger(__name__)
|
|
LOG_MM_TIMING = envs.TOKENSPEED_LOG_MM_TIMING.get()
|
|
|
|
|
|
@dataclass
|
|
class ShmTensorHandle:
|
|
"""Pickle-safe handle to a CPU tensor in a POSIX SHM segment."""
|
|
|
|
shm_name: str
|
|
shape: tuple[int, ...]
|
|
dtype: torch.dtype
|
|
_segment: shared_memory.SharedMemory | None = field(
|
|
default=None, init=False, repr=False, compare=False
|
|
)
|
|
|
|
@classmethod
|
|
def publish(cls, tensor: torch.Tensor) -> ShmTensorHandle:
|
|
nbytes = tensor.numel() * tensor.element_size()
|
|
shm = shared_memory.SharedMemory(create=True, size=nbytes)
|
|
try:
|
|
shm_bytes = torch.frombuffer(shm.buf, dtype=torch.uint8)
|
|
shm_bytes.copy_(tensor.contiguous().view(torch.uint8).reshape(-1))
|
|
except BaseException:
|
|
shm.close()
|
|
shm.unlink()
|
|
raise
|
|
name = shm.name
|
|
shm.close()
|
|
return cls(shm_name=name, shape=tuple(tensor.shape), dtype=tensor.dtype)
|
|
|
|
def attach(self) -> None:
|
|
"""Open the SHM segment on this rank. Must run before the cross-rank
|
|
barrier so unlink in ``consume()`` cannot race another rank's open.
|
|
"""
|
|
if self._segment is None:
|
|
self._segment = shared_memory.SharedMemory(name=self.shm_name)
|
|
|
|
def consume(self) -> torch.Tensor:
|
|
"""Copy into a pinned tensor (so downstream non_blocking H2D is real),
|
|
close this rank's FD, and unlink. ``attach()`` must have run.
|
|
"""
|
|
if self._segment is None:
|
|
raise RuntimeError(
|
|
f"ShmTensorHandle({self.shm_name!r}) must be attach()'d "
|
|
"before consume() (or has already been consumed on this rank)"
|
|
)
|
|
segment = self._segment
|
|
started = time.perf_counter() if LOG_MM_TIMING else None
|
|
try:
|
|
dst = torch.empty(self.shape, dtype=self.dtype, pin_memory=True)
|
|
src = torch.frombuffer(segment.buf, dtype=self.dtype).reshape(self.shape)
|
|
dst.copy_(src)
|
|
finally:
|
|
self._segment = None
|
|
segment.close()
|
|
try:
|
|
segment.unlink()
|
|
except FileNotFoundError:
|
|
# Another rank already won the unlink race; benign.
|
|
pass
|
|
if LOG_MM_TIMING and started is not None:
|
|
logger.info(
|
|
"mm_timing shm_consume_ms name=%s elapsed=%.3f shape=%s dtype=%s",
|
|
self.shm_name,
|
|
(time.perf_counter() - started) * 1000,
|
|
list(self.shape),
|
|
self.dtype,
|
|
)
|
|
return dst
|
|
|
|
def release(self) -> None:
|
|
"""Close and unlink a SHM segment without materializing the tensor."""
|
|
started = time.perf_counter() if LOG_MM_TIMING else None
|
|
segment = self._segment
|
|
self._segment = None
|
|
try:
|
|
if segment is None:
|
|
segment = shared_memory.SharedMemory(name=self.shm_name)
|
|
segment.close()
|
|
try:
|
|
segment.unlink()
|
|
except FileNotFoundError:
|
|
pass
|
|
except FileNotFoundError:
|
|
pass
|
|
if LOG_MM_TIMING and started is not None:
|
|
logger.info(
|
|
"mm_timing shm_release_ms name=%s elapsed=%.3f shape=%s dtype=%s",
|
|
self.shm_name,
|
|
(time.perf_counter() - started) * 1000,
|
|
list(self.shape),
|
|
self.dtype,
|
|
)
|
|
|
|
|
|
def sync_shm_features(reqs, group, group_size: int) -> None:
|
|
"""Attach SHM-backed features in ``reqs`` on every rank.
|
|
|
|
The barrier makes later consume/release unlink race-free in multi-rank
|
|
setups. Actual materialization is intentionally deferred until the
|
|
multimodal encoder planner has deduplicated the batch.
|
|
"""
|
|
pending = [
|
|
mm
|
|
for req in reqs
|
|
if (mm := getattr(req, "multimodal_inputs", None)) is not None
|
|
and mm.has_pending_shm_features()
|
|
]
|
|
if not pending:
|
|
return
|
|
started = time.perf_counter() if LOG_MM_TIMING else None
|
|
for mm in pending:
|
|
mm.attach_shm_features()
|
|
if group_size > 1:
|
|
torch.distributed.barrier(group)
|
|
if LOG_MM_TIMING and started is not None:
|
|
item_count = sum(len(mm.mm_items) for mm in pending)
|
|
logger.info(
|
|
"mm_timing shm_attach_ms requests=%d items=%d elapsed=%.3f",
|
|
len(pending),
|
|
item_count,
|
|
(time.perf_counter() - started) * 1000,
|
|
)
|