Open Adrizzledefizzle opened 4 years ago
Is there a way to use my Intel GPU instead of NVIDIA?
I also need this to work on CPU. Training on GPU is fine, but I need embeddings and low latency. GPU is not an option.
@Adrizzledefizzle FYI Intel GPU is rarely a viable option. You can look into Intel releases for custom versions made for Intel hardware. Or maybe you just need to install Intel MKL and the current version will work. I'm no longer up to date on the statuses, but there is often extra work needed. https://software.intel.com/en-us/articles/getting-started-with-intel-optimization-of-pytorch
Yes , it not worth it to train it on cpu since it would be 10-20x slower . You can train the model on google colab gpu or kaggle gpu for free Suggest to checkthem out
Hey, I can not run the example on my local machine on CPU. I have an Intel GPU so I cant run it with cuda. Tried to run it on CPU by changing 'cuda' to 'cpu' in device = torch.device("cpu") but that results in the error:
as soon as I try to fit it.
Any idea on how to fix it? Are there more settings I have to change if I want to use my CPU for the learner?