小编Edu*_*o H的帖子

运行时错误:cuDNN 错误:CUDNN_STATUS_NOT_INITIALIZED 使用 pytorch

我正在尝试运行一个简单的 pytorch 示例代码。使用 CPU 可以正常工作。但是在使用 GPU 时,我收到此错误消息:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/module.py", line 889, in _call_impl
    result = self.forward(*input, **kwargs)
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/conv.py", line 263, in forward
    return self._conv_forward(input, self.weight, self.bias)
  File "/usr/local/lib/python3.6/dist-packages/torch/nn/modules/conv.py", line 260, in _conv_forward
    self.padding, self.dilation, self.groups)
RuntimeError: cuDNN error: CUDNN_STATUS_NOT_INITIALIZED
Run Code Online (Sandbox Code Playgroud)

我试图运行的代码如下:

import torch
from torch import nn
m = nn.Conv1d(16, 33, 3, stride=2)
m=m.to('cuda')
input = torch.randn(20, 16, 50)
input=input.to('cuda')
output = m(input)
Run Code Online (Sandbox Code Playgroud)

我在带有 CUDA 版本 10.2 的 NVIDIA …

python gpu pytorch

6
推荐指数
3
解决办法
1万
查看次数

标签 统计

gpu ×1

python ×1

pytorch ×1