vllm.distributed.weight_transfer.sparse_nccl_engine ¶
Sparse NCCL weight transfer engine.
Sparse patches use checkpoint names, shapes, and flat indices. The model's native weight loader maps them to rank-local runtime parameters, including TP shards and packed parameters.
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 patch in checkpoint coordinates.
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). send_weights owns a complete one-shot lifecycle. RL infrastructure that owns the generic client lifecycle can call send_weight_chunk between one start and finish.
Sparse patches differ every round, so they are not a stable WeightSource: the engine takes no source, and patches are passed directly to the send methods. An empty patch list is a no-op.
Only the designated trainer sender joins the transfer group; other trainer ranks skip sparse sends.
Methods:
-
send_weight_chunk–Broadcast one chunk inside a caller-owned weight update lifecycle.
-
send_weights–Broadcast one sparse update through a one-shot lifecycle.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
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 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 | |
_post_send_sync() ¶
Wait for the broadcasts to land before returning, so a caller may rebuild or free the patch tensors as soon as a send method returns rather than relying on same-stream ordering. See NCCLTrainerWeightTransferEngine._post_send_sync for why there is no cross-rank barrier.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
_validate_patch(patch) staticmethod ¶
Reject a malformed patch before starting the NCCL transfer.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
send_weight_chunk(patches=None) ¶
Broadcast one chunk inside a caller-owned weight update lifecycle.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
send_weights(patches=None) ¶
Broadcast one sparse update through a one-shot lifecycle.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
SparseNCCLWeightTransferEngine ¶
Bases: WeightTransferEngine[NCCLWeightTransferInitInfo, SparseNCCLWeightTransferUpdateInfo]
Sparse weight transfer engine using NCCL.
Receives checkpoint-coordinate patches broadcast from the trainer and applies them through the model's native weight loader. Sparse updates modify initialized model tensors in place, so the layerwise reload lifecycle is not used.
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.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
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 | |
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
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 patch in checkpoint coordinates.
Attributes:
-
full_shape(tuple[int, ...]) –Full checkpoint shape.
Source code in vllm/distributed/weight_transfer/sparse_nccl_engine.py
full_shape instance-attribute ¶
Full checkpoint shape.