Skip to content

RuntimeError: CUDNN_STATUS_NOT_SUPPORTED #1664

@edgarriba

Description

@edgarriba

I found this runtime error

RuntimeError: CUDNN_STATUS_NOT_SUPPORTED. This error may appear if you passed in a non-contiguous input.

The code reproducing the error is the folowing

import torch
import torch.nn as nn
from torch.autograd import Variable

import torch.backends.cudnn as cudnn
cudnn.enabled = True
cudnn.benchmark = False

x = Variable(torch.ones(1,32,192,256,512)).cuda()

model = nn.ConvTranspose3d(32, 1, 3, 2, 1, 1, bias=False).cuda()

y = model(x)
print(y.size())

Metadata

Metadata

Assignees

Labels

module: cudnnRelated to torch.backends.cudnn, and CuDNN supportmodule: dependency bugProblem is not caused by us, but caused by an upstream library we usetriagedThis issue has been looked at a team member, and triaged and prioritized into an appropriate module

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions