Closed evelinamorim closed 4 months ago
If I tried the following lines of code:
import torch embedding = torch.nn.Embedding(10, 3) embedding.to('xpu')
And I got the following error:
PyTorch is not linked with support for xpu devices
So, is there any support for Embedding layer in the intel-extension?
pls import ipex first.
import torch import intel_extension_for_pytorch
Ok. Sorry, I thought that the installed version of pytorch version was enough.
Describe the issue
If I tried the following lines of code:
And I got the following error:
So, is there any support for Embedding layer in the intel-extension?