vllm.v1.worker.cp_utils ¶
PCPManager ¶
Manager for Prefill Context Parallelism (PCP) buffers and partitioning.
Source code in vllm/v1/worker/cp_utils.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | |
_pcp_unpad_mask_tensor instance-attribute ¶
_pcp_unpad_mask_tensor = zeros(
max_padded_num_tokens, device="cpu", dtype=bool
)
pcp_allgather_restore_idx instance-attribute ¶
pcp_allgather_restore_idx = CpuGpuBuffer(
max_padded_num_tokens,
dtype=int64,
device=device,
pin_memory=pin_memory,
)
pcp_padded_slot_mapping instance-attribute ¶
pcp_padded_slot_mapping = empty(
max_padded_num_tokens, dtype=int64, device=device
)
__init__ ¶
__init__(
pcp_world_size: int,
pcp_rank: int,
max_num_reqs: int,
max_padded_num_tokens: int,
device: device,
pin_memory: bool = False,
) -> None
Source code in vllm/v1/worker/cp_utils.py
pad_slot_mapping ¶
Expand slot_mapping for the all-gathered KV cache.
After KV all-gather, slot_mapping needs to account for per-request PCP padding. This places real slot values at unpadded positions and -1 at padding positions.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
slot_mapping | Tensor | Unpadded slot mapping (global real tokens only) | required |
Source code in vllm/v1/worker/cp_utils.py
partition_inputs ¶
partition_inputs(
positions_np: ndarray,
req_indices: ndarray,
num_scheduled_tokens: ndarray,
num_computed_tokens: ndarray,
arange_np: ndarray,
reorder_batch_threshold: int | None,
) -> tuple[int, ndarray, ndarray]
Partition inputs for this PCP rank using DualChunkSwap splitting.
Each request's prefill tokens are split across PCP ranks using a "DualChunkSwap" pattern: tokens are padded to a multiple of 2*world_size, then split into head/tail chunks assigned to ranks in an interleaved pattern to balance computation across the sequence.
For decode requests (tokens <= reorder_batch_threshold AND has context), tokens are duplicated across all ranks instead of split. This matches the reorder_batch_to_split_decodes_and_prefills definition.
This method: 1. Computes which tokens this rank processes 2. Gathers local positions/req_indices from the global arrays 3. Builds pcp_allgather_restore_idx for reordering after all-gather 4. Builds pcp_unpad_mask for removing padding after restore
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
positions_np | ndarray | Global position values, modified in-place to local | required |
req_indices | ndarray | Global request indices, modified in-place to local | required |
num_scheduled_tokens | ndarray | Per-request token counts | required |
num_computed_tokens | ndarray | Per-request computed token counts (0 = prefill) | required |
arange_np | ndarray | Pre-allocated arange buffer | required |
reorder_batch_threshold | int | None | Threshold distinguishing decode vs prefill | required |
Returns:
| Type | Description |
|---|---|
tuple[int, ndarray, ndarray] | (local_total, positions_np[:local_total], req_indices[:local_total]) |
Source code in vllm/v1/worker/cp_utils.py
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 | |
restore_hidden_states ¶
All-gather hidden states, restore order, and remove padding.
Source code in vllm/v1/worker/cp_utils.py
check_attention_cp_compatibility ¶
check_attention_cp_compatibility(
vllm_config: VllmConfig,
) -> None