diff --git a/snippets/install-gpu-dependencies.mdx b/snippets/install-gpu-dependencies.mdx
index 2e63c43d4..7fa4c8dd3 100644
--- a/snippets/install-gpu-dependencies.mdx
+++ b/snippets/install-gpu-dependencies.mdx
@@ -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
@@ -13,3 +14,6 @@ Install GPU Dependencies
+
+
+
diff --git a/snippets/intel-install.mdx b/snippets/intel-install.mdx
new file mode 100644
index 000000000..8b76224cb
--- /dev/null
+++ b/snippets/intel-install.mdx
@@ -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).