解决RuntimeError: Distributed package doesn‘t have NCCL built in
Posted Paul-Huang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决RuntimeError: Distributed package doesn‘t have NCCL built in相关的知识,希望对你有一定的参考价值。
现象
python在windows环境下dist.init_process_group(backend, rank, world_size)处报错‘RuntimeError: Distributed package doesn’t have NCCL built in’
原因分析:
windows不支持NCCL backend
解决方法1
import sys
if sys.platform == "win32":
os.environ["PL_TORCH_DISTRIBUTED_BACKEND"] = "gloo"
解决方法2
import os
os.environ["PL_TORCH_DISTRIBUTED_BACKEND"] = "gloo"
以上是关于解决RuntimeError: Distributed package doesn‘t have NCCL built in的主要内容,如果未能解决你的问题,请参考以下文章
“RuntimeError:生成器引发了 StopIteration”如何解决这个 python 问题?
RuntimeError: 标量类型 Long 的预期对象,但参数 #2 'mat2' 的标量类型 Float 如何解决?
如何解决这个奇怪的错误:“RuntimeError: CUDA error: out of memory”
RuntimeError: Python is not installed as a framework 错误解决办法
解决RuntimeError: Distributed package doesn‘t have NCCL built in
解决RuntimeError: Distributed package doesn‘t have NCCL built in