vllm.v1.worker.gpu.pp_utils ¶
Pipeline Parallelism utils for V2 Model Runner.
Classes:
-
PPHandler–Runs the PP sampled-token broadcast/recv on a side stream so the
-
PendingRecv–Per-step slot data for a deferred postprocess on the main stream.
Functions:
-
compute_need_sampled_mask–Return a bool array of shape
[input_batch.num_reqs]marking requests
PPHandler ¶
Runs the PP sampled-token broadcast/recv on a side stream so the default stream isn't gated by the matching peer call. Step T's recv is consumed at step T+pp_size via get_prev_sampled_outputs.
Uses a dedicated NCCL communicator (sibling of the PP device_group) for the broadcast so it does not serialize on the wire with the inter-stage hidden-state p2p send/recv ops.
Methods:
-
get_prev_sampled_outputs–Consume the entry from pp_size steps ago and wait for its recv event,
-
receive–Returns True iff sampled tokens need to be gathered from all
Source code in vllm/v1/worker/gpu/pp_utils.py
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 | |
get_prev_sampled_outputs() ¶
Consume the entry from pp_size steps ago and wait for its recv event, then filter out entries whose request was freed since receive.
Source code in vllm/v1/worker/gpu/pp_utils.py
receive(input_batch) ¶
Returns True iff sampled tokens need to be gathered from all requests in the batch.
Source code in vllm/v1/worker/gpu/pp_utils.py
PendingRecv dataclass ¶
Per-step slot data for a deferred postprocess on the main stream.
Source code in vllm/v1/worker/gpu/pp_utils.py
compute_need_sampled_mask(input_batch) ¶
Return a bool array of shape [input_batch.num_reqs] marking requests with outputs that might be needed in a subsequent (decode) step. Returns None if no sampled outputs are needed in the requests' next step.