Hi @yintongl ,
do you have any recommendations for getting the B70 working locally on Ubuntu 26.04?
I tried to follow these steps, but there are no Ubuntu 26.04 packages in the ppa.
I installed some Intel packages:
sudo apt install -y libze-dev intel-ocloc
sudo apt install intel-opencl-icd
and PyTorch using
uv pip install torch torchvision torchaudio torchao --index-url https://download.pytorch.org/whl/xpu --no-cache-dir
However:
print(f"XPU available: {torch.xpu.is_available()}")
unfortunately outputs:
/home/stefan/Repositories/intel-test/.my-env/lib/python3.14/site-packages/torch/xpu/__init__.py:68: UserWarning: XPU device count is zero! (Triggered internally at /pytorch/c10/xpu/XPUFunctions.cpp:113.)
return torch._C._xpu_getDeviceCount()
XPU available: False
Is my system missing some Intel packages?