运行程序时cuda、pytorch不匹配问题

问题1、【PyTorch】RuntimeError: CUDA error: CUBLAS_STATUS_EXECUTION_FAILED when calling `cublasSgemm( handle, opa, opb, m, n, k, &alpha, a, lda, b, ldb, &beta, c, ldc)`

运行程序时cuda、pytorch不匹配问题_第1张图片

解析:遇到这个问题的时候,我使用这条命令:pip3 install torch==1.8.1+cu111 torchvision==0.9.1+cu111 -f https://download.pytorch.org/whl/torch_stable.html(这一步也是需要的,因为这个是为了cuda和pytorch相对应)

问题2、解决了上述问题后,又遇到新的问题:StopIteration: Caught StopIteration in replica 0 on device 0

运行程序时cuda、pytorch不匹配问题_第2张图片

解析:在最后一行错误中可以看到modeling.py程序的727行有错误,因此将next(self.parameters()).dtype用torch.float32代替就可以了

综上所述:问题已经解决

你可能感兴趣的:(pytorch,深度学习,神经网络)