When I run torch.svd(torch.rand(3,3).cuda()) I encountered an error:
---------------------------------------------------------------------------
RuntimeError Traceback (most recent call last)
<ipython-input-6-9c860559505b> in <module>()
----> 1 torch.svd(torch.rand(3,3).cuda())
RuntimeError: No CUDA implementation of 'gesvd'. Install MAGMA and rebuild cutorch (http://icl.cs.utk.edu/magma/) at /data/wanggu/software/pytorch/torch/lib/THC/generic/THCTensorMathMagma.cu:280
However, I have installed magma-cuda80 through conda install -c soumith magma-cuda80 and rebuilt pytorch.
The error still exists. Could anyone help me?