vllm.v1.worker.gpu.dp_utils ¶
Classes:
-
DPSyncState–What a
dispatch_cg_and_sync_dpcall agreed across DP ranks.
Functions:
-
dispatch_cg_and_sync_dp–Pick a cudagraph descriptor for this batch, agreeing it across DP ranks.
-
sync_cudagraph_and_dp_padding–Coordinates the batch descriptor and DP padding across all ranks.
DPSyncState dataclass ¶
What a dispatch_cg_and_sync_dp call agreed across DP ranks.
Every field is identical on every rank, so callers can branch on them without disagreeing about whether to run a collective. Never add a per-rank value here.
Source code in vllm/v1/worker/gpu/dp_utils.py
dispatch_cg_and_sync_dp(cudagraph_manager, num_reqs, num_tokens, uniform_token_count, dp_size, dp_rank, max_query_len=None, need_eager=False, num_active_loras=0, parallel_config=None, allow_ubatching=False, uniform_decode=False, dp_sync=None) ¶
Pick a cudagraph descriptor for this batch, agreeing it across DP ranks.
Runs a collective when dp_size > 1 so every rank dispatches to the same shape. Pass dp_sync from a dispatch already made over this same batch (a drafter's prefill runs the target's batch shape) to reuse that agreement instead, with no collective.
Parameters:
-
(cudagraph_manager¶CudaGraphManager | None) –Manager to dispatch against. May be None only when
need_eageris True (profile run). -
(num_reqs¶int) –Requests in this rank's batch.
-
(num_tokens¶int) –Tokens in this rank's batch, already padded by the caller.
-
(uniform_token_count¶int | None) –Per-request token count if this rank's batch is a uniform decode, else None.
dp_sync.uniform_token_counttakes its place when a sync is reused, since that one is agreed across ranks. -
(dp_size¶int) –Data-parallel world size. 1 skips all cross-rank work.
-
(dp_rank¶int) –This rank's index in the DP group.
-
(max_query_len¶int | None, default:None) –Upper bound on per-request query length, for selecting varlen decode graphs. None means the graph must not constrain it.
-
(need_eager¶bool, default:False) –Force
CUDAGraphMode.NONEinstead of dispatching. -
(num_active_loras¶int, default:0) –Active LoRA count for this rank. Does not need cross-rank agreement; it never changes a bucket's token count.
-
(dp_sync¶DPSyncState | None, default:None) –Agreement from a prior dispatch over this same batch, to reuse. Must come from a batch with this same padded
num_tokensand the sameuniform_token_count;num_reqsmay differ, as neither depends on it. Passing a sync from a different batch is a caller error and trips an assert.
Returns:
-
BatchExecutionDescriptor–(batch_desc, sync), where
syncis this batch's agreement for a later -
DPSyncState | None–dispatch to reuse. It is None when
dp_sizeis 1 or no rank has work.
Source code in vllm/v1/worker/gpu/dp_utils.py
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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
sync_cudagraph_and_dp_padding(cudagraph_manager, desired_batch_desc, num_tokens, num_reqs, uniform_token_count, dp_size, dp_rank, max_query_len=None, num_active_loras=0, parallel_config=None, allow_ubatching=False, uniform_decode=False) ¶
Coordinates the batch descriptor and DP padding across all ranks.
parallel_config is only needed to decide whether to microbatch, so callers that never do (allow_ubatching=False) can leave it out.
Returns (synced_batch_desc, sync). sync is None when no rank has work.
Source code in vllm/v1/worker/gpu/dp_utils.py
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 | |