Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] Fix AMDGPU to target chip mapping #18584

Merged
merged 1 commit into from
Sep 23, 2024
Merged
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
24 changes: 13 additions & 11 deletions docs/website/docs/guides/deployment-configurations/gpu-rocm.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,19 @@ If no target is specified then we will default to `gfx908`.

Here is a table of commonly used architectures:

| AMD GPU | Target Chip | Architecture Code Name
| ------------- | ----------- | ----------------------
| AMD MI100 | `gfx908` | `cdna1`
| AMD MI210 | `gfx90a` | `cdna2`
| AMD MI250 | `gfx90a` | `cdna2`
| AMD MI300A | `gfx940` | `cdna3`
| AMD MI300X | `gfx942` | `cdna3`
| AMD RX7900XTX | `gfx1100` | `rdna3`
| AMD RX7900XT | `gfx1100` | `rdna3`
| AMD RX7800XT | `gfx1101` | `rdna3`
| AMD RX7700XT | `gfx1101` | `rdna3`
| AMD GPU | Target Chip | Architecture Code Name
| ------------------------ | ----------- | ----------------------
| AMD MI100 | `gfx908` | `cdna1`
| AMD MI210 | `gfx90a` | `cdna2`
| AMD MI250 | `gfx90a` | `cdna2`
| AMD MI300X (early units) | `gfx940` | `cdna3`
| AMD MI300A (early units) | `gfx941` | `cdna3`
| AMD MI300A | `gfx942` | `cdna3`
| AMD MI300X | `gfx942` | `cdna3`
| AMD RX7900XTX | `gfx1100` | `rdna3`
| AMD RX7900XT | `gfx1100` | `rdna3`
| AMD RX7800XT | `gfx1101` | `rdna3`
| AMD RX7700XT | `gfx1101` | `rdna3`

For a more comprehensive list of prior GPU generations, you can refer to the
[LLVM AMDGPU backend](https://llvm.org/docs/AMDGPUUsage.html#processors).
Expand Down
Loading