Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions snippets/install-gpu-dependencies.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import AmdInstall from "/snippets/amd-install.mdx";
import NvidiaInstall from "/snippets/nvidia-install.mdx";
import MacInstall from "/snippets/mac-silicon-install.mdx";
import IntelInstall from "/snippets/intel-install.mdx";

Install GPU Dependencies

Expand All @@ -13,3 +14,6 @@ Install GPU Dependencies
<Accordion title="Mac ARM Silicon">
<MacInstall />
</Accordion>
<Accordion title="Intel">
<IntelInstall />
</Accordion>
7 changes: 7 additions & 0 deletions snippets/intel-install.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Intel Arc GPUs (Arc A-Series, Arc B-Series, and Core Ultra processors with Arc Graphics) are supported through PyTorch's native XPU backend. Intel GPUs use XPU, not CUDA.

```bash
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/xpu
```

Make sure your [Intel GPU driver](https://www.intel.com/content/www/us/en/developer/articles/tool/pytorch-prerequisites-for-intel-gpu.html) is installed and up to date. Do not install CUDA wheels. If ComfyUI still does not detect the GPU, see [Intel GPU troubleshooting](/troubleshooting/overview#intel-gpu-issues).
Loading