We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2fce90 commit 8abff7fCopy full SHA for 8abff7f
checkpoint_engine/distributed/base.py
@@ -225,8 +225,8 @@ def use_backend(backend: str | None):
225
return
226
227
mapping = {
228
- "vllm_nccl": ".nccl.DistributedNccl",
229
- "vllm_hccl": ".hccl.DistributedHccl",
+ "vllm_nccl": ".vllm_nccl.DistributedNccl",
+ "vllm_hccl": ".vllm_hccl.DistributedHccl",
230
}
231
if backend not in mapping:
232
raise ValueError(f"Unsupported custom backend: {backend}")
checkpoint_engine/distributed/hccl.py …eckpoint_engine/distributed/vllm_hccl.pycheckpoint_engine/distributed/hccl.py renamed to checkpoint_engine/distributed/vllm_hccl.py
checkpoint_engine/distributed/nccl.py …eckpoint_engine/distributed/vllm_nccl.pycheckpoint_engine/distributed/nccl.py renamed to checkpoint_engine/distributed/vllm_nccl.py
0 commit comments