Pipeline Io#
-
struct StreamingPrefillBuffers#
Persistent copies of the prefill-time input embeddings and engine hidden_states output, used by streaming consumers that run concurrently with the base model’s decode loop.
The base model’s
inputsEmbedsandoutputHiddenStatestensors are reshaped to{B, 1, H}and overwritten by every decode step. This struct retains the{B, prefillLen, H}view as it stood at the end of prefill, so consumers reading these buffers do not race with decode writes.Public Functions
- void populateFromPrefill(
- Tensor const &liveInputEmbeds,
- Tensor const &liveEngineHiddenStates,
- int32_t batch,
- int32_t prefillLen,
- int32_t hiddenSize,
- int32_t maxBatch,
- int32_t maxSeq,
- cudaStream_t stream
Allocate on first call (sized to the worst case
{maxBatch, maxSeq, hiddenSize}), reshape to the current request’s{batch, prefillLen, hiddenSize}, and copy from the live PipelineIO buffers onstream. Subsequent calls reuse the same allocation. Must be invoked after prefill and before the first decode step on the same stream so the copies precede any overwrite ofoutputHiddenStates.
-
struct PipelineIO#
All tensors flowing through the inference pipeline. POINTER STABILITY INVARIANT: After buildTensorMap() is called, this struct must not be moved, and deepstackEmbeds must not be resized. TensorMap holds Tensor* pointers into these members — any reallocation invalidates them.
Public Members
-
Tensor hostSelectTokenIndices#
CPU (pinned, [maxBatch, 1] INT64) — pairs with selectTokenIndices for H2D staging.
-
Tensor outputHiddenStates#
Engine hidden_states output. Used by the vanilla LLM path; SpecDecode routes its hidden states through
baseHiddenStatesinstead.
-
StreamingPrefillBuffers streamingPrefill#
Per-request copies of
inputsEmbeds/outputHiddenStatesthat streaming consumers (e.g. the Qwen3-Omni Talker) read while the base model’s decode loop overwrites the live buffers. Populated byLLMInferenceRuntimeonly when streaming output is enabled for the request; otherwise the buffers stay empty (no allocation cost).
Public Static Functions
- static PipelineIO createForLLM(
- LLMEngineConfig const &cfg,
- cudaStream_t stream
Build PipelineIO for the vanilla single-engine LLM runtime (basic I/O tensors, deepstack embeds, MRope cos/sin cache).
- static PipelineIO createForSpecDecode(
- DeploymentConfig const &bundle,
- int32_t maxRuntimeBatchSize,
- cudaStream_t stream
Build PipelineIO for a two-engine speculative-decoding runtime (basic I/O, hidden states, deepstack embeds, MRope cos/sin cache).
-
Tensor hostSelectTokenIndices#