赞
踩
export CUDA_VISIBLE_DEVICES=0 #这里是要使用的GPU编号,正常的话是从0开始
#在生成网络对象之前:
torch.cuda.set_device(0)
CUDA_VISIBLE_DEVICES=7 python retinanet/main.py
net = torch.nn.DataParallel(model, device_ids=[0])
net = Net.cuda(0)
注:
参考博客:https://blog.csdn.net/weixin_40712763/article/details/82846509
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。