Open kayleeliyx opened 3 years ago
I have the exact same issue. It seems you are constrained to use lower PyTorch versions
There are 3 steps to solve this issue in my environment :1. setup.py ,edit ‘nvcc_args’ like this :nvcc_args = [
# '-gencode', 'arch=compute_52,code=sm_52',
# '-gencode', 'arch=compute_60,code=sm_60',
# '-gencode', 'arch=compute_61,code=sm_61',
# '-gencode', 'arch=compute_70,code=sm_70',
# '-gencode', 'arch=compute_70,code=compute_70'
'-gencode', 'arch=compute_86,code=sm_86',
'-gencode', 'arch=compute_86,code=compute_86'
];
I could not import correlation_cuda and got this error everytime I import it:
I use torch-1.7.1+cu110 torchaudio-0.7.2 torchvision-0.8.2+cu110