vllm.distributed.weight_transfer.sparse_nccl_engine ¶
Sparse NCCL weight transfer engine.
A standalone engine (not a subclass of NCCLWeightTransferEngine) for applying sparse, flat-index weight patches in place. It shares only NCCL process-group initialization with the dense engine (via nccl_common); the update path applies index/value patches directly to existing model parameters and never runs layerwise reload.
MVP limitations: * TP=1 and PP=1 only * uses runtime/kernel-format parameter names * not composable with checkpoint-format or packed updates
Classes:
-
SparseNCCLTrainerInitInfo–Trainer-side init info for the sparse NCCL weight transfer backend.
-
SparseNCCLTrainerWeightTransferEngine–Trainer-side sparse NCCL weight transfer engine.
-
SparseNCCLWeightTransferEngine–Sparse weight transfer engine using NCCL.
-
SparseNCCLWeightTransferUpdateInfo–Update info for the sparse NCCL weight transfer backend.
-
SparseWeightPatch–A sparse in-place patch for one existing parameter.
SparseNCCLTrainerInitInfo dataclass ¶
Bases: TrainerInitInfo
Trainer-side init info for the sparse NCCL weight transfer backend.
Same rendezvous shape as the dense NCCL backend (the sender opens its endpoint as NCCL rank 0), but with no packed wire params: sparse transfers are never packed. backend is the factory dispatch key.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
SparseNCCLTrainerWeightTransferEngine ¶
Bases: TrainerWeightTransferEngine[SparseNCCLTrainerInitInfo]
Trainer-side sparse NCCL weight transfer engine.
Broadcasts flat-index (indices, values) patches from NCCL rank 0 while the inference-side update_weights runs concurrently on a side thread (the worker's recvs rendezvous inside the same NCCL broadcasts), then finishes the update. Unlike the full-resync backends, sparse patches differ every round (a fresh set of deltas from each optimizer step), so they are not a stable WeightSource: the engine takes no source, and each round's patches are passed straight to send_weights(patches). A round with no patches is a no-op.
The sparse backend assumes a single-rank trainer (matching its TP=1 / PP=1 MVP scope), so non-sender ranks skip send_weights entirely.
Methods:
-
send_weights–Broadcast this round's sparse patches.
patchesis the per-round
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
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 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | |
_post_send_sync() ¶
Wait for the broadcasts to land before returning, so a caller may rebuild or free the patch tensors as soon as send_weights returns rather than relying on same-stream ordering. See NCCLTrainerWeightTransferEngine._post_send_sync for why there is no cross-rank barrier (and sparse is single-rank on the trainer anyway).
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
_validate_patch(patch) staticmethod ¶
Reject a malformed patch before any NCCL call.
The worker checks the same invariants in _apply_patch, but by then the broadcasts are already under way: a mismatch surfaces as a size mismatch mid-transfer, which wedges both sides instead of raising. Checking here keeps the failure on the trainer, before start_weight_update.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
send_weights(patches=None) ¶
Broadcast this round's sparse patches. patches is the per-round payload (sparse deltas differ every round), so it is passed here rather than fixed at init. Every patch must set full_shape.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
SparseNCCLWeightTransferEngine ¶
Bases: WeightTransferEngine[NCCLWeightTransferInitInfo, SparseNCCLWeightTransferUpdateInfo]
Sparse weight transfer engine using NCCL.
Receives flat-index (indices, values) patches broadcast from the trainer (rank 0) and applies them in place to existing model parameters. Weights are applied directly without layerwise reload, so start_weight_update and finish_weight_update are no-ops.
Methods:
-
finish_weight_update–No-op: sparse patches are applied in place, no layerwise reload.
-
init_transfer_engine–Initialize the NCCL process group with the trainer.
-
receive_weights–Receive sparse flat-index patches from the trainer and apply them.
-
start_weight_update–No-op: sparse patches are applied in place, no layerwise reload.
-
trainer_send_weights–Removed. Use the stateful
SparseNCCLTrainerWeightTransferEngine.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
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 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 | |
_apply_patch(patch) ¶
Apply a single sparse flat-index patch to an existing model param.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
finish_weight_update() ¶
init_transfer_engine(init_info) ¶
Initialize the NCCL process group with the trainer.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
receive_weights(update_info) ¶
Receive sparse flat-index patches from the trainer and apply them.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
start_weight_update() ¶
No-op: sparse patches are applied in place, no layerwise reload.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
trainer_send_weights(*args, **kwargs) staticmethod ¶
Removed. Use the stateful SparseNCCLTrainerWeightTransferEngine.
Transitional stub kept only to satisfy the (still abstract) WeightTransferEngine.trainer_send_weights; that member is dropped from the worker ABC once every backend has migrated to the trainer engine.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
SparseNCCLWeightTransferUpdateInfo dataclass ¶
Bases: WeightTransferUpdateInfo
Update info for the sparse NCCL weight transfer backend.
Attributes:
-
num_updates_list(list[int]) –Number of sparse entries to receive for each parameter in
names.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
num_updates_list instance-attribute ¶
Number of sparse entries to receive for each parameter in names.
SparseWeightPatch dataclass ¶
A sparse in-place patch for one existing parameter.
Attributes:
-
full_shape(tuple[int, ...] | None) –Full shape of the patched parameter. Required when the patch is sent
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
full_shape = None class-attribute instance-attribute ¶
Full shape of the patched parameter. Required when the patch is sent via SparseNCCLTrainerWeightTransferEngine (it ships in the per-round update info); the worker-side apply path does not read it.