Intel GPU acceleration is missing (XPU not enabled)
pytorch has recently added support for Intel GPU acceleration 1.
To test if my Intel Arc GPU can be used by pytorch I can run python -c 'import torch; torch.tensor([1.0, 2.0]).to("xpu")'
That test fails today with python-pytorch 2.6.0-8 like this:
$ python -c 'import torch; torch.tensor([1.0, 2.0]).to("xpu")'
Traceback (most recent call last):
File "<string>", line 1, in <module>
import torch; torch.tensor([1.0, 2.0]).to("xpu")
~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^
File "/usr/lib/python3.13/site-packages/torch/xpu/__init__.py", line 118, in _lazy_init
raise AssertionError("Torch not compiled with XPU enabled")
AssertionError: Torch not compiled with XPU enabled