detectron2报错解决方案 RuntimeError: Default process group has not been initialized, please make sure to c

问题:RuntimeError: Default process group has not been initialized, please make sure to call init_process_group.
解决: github503问题,解决方案,windows环境使用detectron2 # 503

 cuda_num = os.environ['CUDA_VISIBLE_DEVICES']
 cuda_num_list = list(cuda_num.split(","))
	if len(cuda_num_list) == 1:
        import torch.distributed as dist
   
        dist.init_process_group(backend='nccl', init_method='tcp://localhost:23456', rank=0, world_size=1)
    出现报错 RuntimeError: Distributed package doesn't have NCCL built in
    原因分析: windows不支持NCCL backend
    解决方案: 在dist.init_process_group语句之前添加backend=‘gloo’,也就是在windows中使用GLOO替代NCCL
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值