-
Notifications
You must be signed in to change notification settings - Fork 8.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues playing without CUDA #54
Comments
It may be possible, but you would have to change calls to cuda() to get that to work. I don't know how torch handles other GPUs. You would also need to change the device the weights are stored on. |
I run this tool successfully on my local machine without GPU. You need to replace all the codes which include cuda. |
If it works on CPU, why not making this optional? # its pseudocode
if torch.cuda and not options.force_cpu:
torch.device = torch.cuda
else:
torch.device = torch and then rewrite all torch.cuda to torch.device. I think it's look a bit like a hack, but it works and it's easy to refactor |
How did you replace all the cuda codes? Can you please explain ? That would be great help. Thanks and regards, |
For anyone wanting to run this without CUDA. It's possible by removing the Cuda codes. I have been successfully able to run it without CUDA. Will try to raise a PR if I get some time. |
Excuse my inexperience, but I tried to use your software since it looked very appealing to me.
I use an AMD GPU, so I followed the steps on installing torch without it. However, I keep getting this error message.
It seems my only failure is that it does not playback.
Is it even possible to use it without CUDA? What can I do to circumvent this error?
The text was updated successfully, but these errors were encountered: