mirror of
https://github.com/Comfy-Org/ComfyUI.git
synced 2026-09-21 05:27:57 -05:00
Update instructions for manual install on windows AMD. (#16217)
This commit is contained in:
@@ -214,21 +214,30 @@ This is the command to install the nightly with ROCm 7.2 which might have some p
|
||||
```pip install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/rocm7.2```
|
||||
|
||||
|
||||
### AMD GPUs (Experimental: Windows and Linux), RDNA 3, 3.5 and 4 only.
|
||||
### AMD GPUs (Windows, ROCm 10.0)
|
||||
|
||||
These have less hardware support than the builds above but they work on windows. You also need to install the pytorch version specific to your hardware.
|
||||
Use AMD's [multi-architecture PyTorch packages](https://rocm.docs.amd.com/projects/ai-ecosystem/en/latest/frameworks/pytorch/install.html). The `device-*` extras install your GPU's kernels and the matching ROCm runtime automatically; a separate HIP SDK installation is not needed.
|
||||
|
||||
RDNA 3 (RX 7000 series):
|
||||
Use Windows 11, a current [AMD graphics driver](https://www.amd.com/en/support/download/drivers.html), and 64-bit Python 3.13.
|
||||
|
||||
```pip install --pre torch torchvision torchaudio --index-url https://rocm.nightlies.amd.com/v2/gfx110X-all/```
|
||||
The install command below uses `device-all` to install kernels for all supported GPUs. To reduce download size and disk usage, optionally replace **both** occurrences of `device-all` with the target for your GPU:
|
||||
|
||||
RDNA 3.5 (Strix halo/Ryzen AI Max+ 365):
|
||||
| GPU | Device extra |
|
||||
| --- | --- |
|
||||
| RX 9070 / XT, Radeon AI PRO R9700 | `device-gfx1201` |
|
||||
| RX 9060 / XT | `device-gfx1200` |
|
||||
| RX 7900 XT / XTX | `device-gfx1100` |
|
||||
| RX 7700 XT / 7800 XT | `device-gfx1101` |
|
||||
| RX 7600 / XT | `device-gfx1102` |
|
||||
| Ryzen AI Max / Max+ (Strix Halo) | `device-gfx1151` |
|
||||
|
||||
```pip install --pre torch torchvision torchaudio --index-url https://rocm.nightlies.amd.com/v2/gfx1151/```
|
||||
**Note:** This table only lists examples. A GPU missing from it may still be supported: supported architectures include RDNA 2, RDNA 3, RDNA 3.5, and RDNA 4. Keep `device-all` to install kernels for all supported targets. For other models, see AMD's [GPU target table](https://github.com/ROCm/TheRock/blob/main/RELEASES.md#gfx-target-lookup-table) and [ROCm compatibility matrix](https://rocm.docs.amd.com/en/docs-10.0.0/compatibility/compatibility-matrix.html).
|
||||
|
||||
RDNA 4 (RX 9000 series):
|
||||
**ROCm 10.0.0 with PyTorch 2.13:**
|
||||
|
||||
```pip install --pre torch torchvision torchaudio --index-url https://rocm.nightlies.amd.com/v2/gfx120X-all/```
|
||||
```bat
|
||||
pip install --index-url https://stable.repo.amd.com/rocm/whl-next/ "torch[device-all]==2.13.0+rocm10.0.0" "torchvision[device-all]==0.28.0+rocm10.0.0" "torchaudio==2.11.0.2+rocm10.0.0"
|
||||
```
|
||||
|
||||
### Intel GPUs (Windows and Linux)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user