vllm.distributed.weight_transfer.m2n_trainer ¶
Trainer-side weight transfer engine for the NCCL M2N backend.
Symmetric to M2NWeightTransferEngine but in the training process. Every trainer rank joins the shared communicator and runs every reshard, sending its own local shard; only rank 0 touches the inference control plane.
Workers join the communicator during init and run reshard from inside update_weights, so those two RPCs overlap with work on this side. Both run on a helper thread and are joined afterwards, which keeps that overlap inside the engine -- where the TrainerWeightTransferEngine contract puts it -- rather than in every caller.
Classes:
-
M2NTrainerInitInfo–Trainer-side init info for nccl_m2n.
-
M2NTrainerWeightTransferEngine–Trainer-side engine: sends every rank's local shard, once per parameter.
M2NTrainerInitInfo dataclass ¶
Bases: TrainerInitInfo
Trainer-side init info for nccl_m2n.
rank (from TrainerInitInfo) is this trainer process's rank; it is also its rank in the shared communicator, since the trainer occupies [0, num_trainer_ranks). Rank 0 drives the control plane.
Methods:
-
__post_init__–Reject rank counts or destination meshes that cannot form a group.
Attributes:
-
destination_mesh_dims(tuple[int, int]) –dst_mesh_dims, or a flat mesh over every inference worker. -
dst_mesh_dims(tuple[int, int] | None) –How the inference ranks are laid out: axis 0 replicates and axis 1
-
world_size(int) –Trainer ranks + all inference workers.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
destination_mesh_dims property ¶
dst_mesh_dims, or a flat mesh over every inference worker.
dst_mesh_dims = None class-attribute instance-attribute ¶
How the inference ranks are laid out: axis 0 replicates and axis 1 shards. The trainer declares it so both sides describe the destination identically; defaults to a flat (num_workers, 1), which is all a replicated destination needs.
world_size instance-attribute ¶
Trainer ranks + all inference workers.
__post_init__() ¶
Reject rank counts or destination meshes that cannot form a group.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
M2NTrainerWeightTransferEngine ¶
Bases: TrainerWeightTransferEngine[M2NTrainerInitInfo]
Trainer-side engine: sends every rank's local shard, once per parameter.
Called on every trainer rank. All ranks join the communicator and run every reshard; only rank 0 touches the control plane.
Methods:
-
__init__–Hold the client and source;
trainer_initfills in the group. -
send_weights–Drive one update round: start, reshard concurrently, then finish.
-
shutdown–Destroy the m2n handle, join the helper thread, and drop the group.
-
trainer_init–Build the engine and rendezvous with the inference side.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
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 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 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 410 411 412 413 414 | |
__init__(*, client, source, is_controller, num_trainer_ranks) ¶
Hold the client and source; trainer_init fills in the group.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
_receive_destination_plan(first_worker_rank) ¶
Receive and validate the inference-side per-parameter placements.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
_send() ¶
Reshard each local shard into its worker-planned destination.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
_worker_init_info(init_info) ¶
Handshake payload: rendezvous, both meshes, and the transfer plan.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
send_weights() ¶
Drive one update round: start, reshard concurrently, then finish.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
shutdown() ¶
Destroy the m2n handle, join the helper thread, and drop the group.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
trainer_init(init_info, *, client, source=None) classmethod ¶
Build the engine and rendezvous with the inference side.
Runs on every trainer rank. Rank 0 additionally ships the transfer plan to the workers and drives the control plane; the other ranks only build local state and join the communicator. Every rank participates in every reshard and sends its local shard.
The ordering here is not arbitrary -- see the comments inline. In short: validate before anything blocks; start the init RPC without waiting (workers join the communicator inside that RPC, so it cannot return until this side has joined too); then join the NCCL communicator; then create the M2N handle; and only then wait for the RPC to finish.
Source code in vllm/distributed/weight_transfer/m2n_trainer.py
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 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 | |