更新 amdgpu.ids 文件 #5316
Conversation
| 7480, C3, AMD Radeon RX 7600S | ||
| 7480, C7, AMD Radeon RX 7600M XT | ||
| 7480, CF, AMD Radeon RX 7600 | ||
| 7481, C7, AMD Steam Machine |
There was a problem hiding this comment.
Pull request overview
This PR updates the bundled amdgpu.ids database (sourced from Mesa/libdrm) used by HMCLCore’s Linux GPU detection to map AMD PCI device/revision IDs to human-friendly GPU names.
Changes:
- Update upstream reference URL for
amdgpu.idsand refresh entries to a newer libdrm snapshot. - Add new AMD GPU ID/revision mappings and adjust some existing product names.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| 75A0, 00, AMD Instinct MI350X | ||
| 75A3, 00, AMD Instinct MI355X | ||
| 75B0, 00, AMD Instinct MI350X VF | ||
| 75B3, 00, AMD Instinct MI355X VF |
There was a problem hiding this comment.
LinuxGPUDetector builds the lookup prefix with String.format("%X,\t%X,\t", deviceId, revision) (no zero-padding). If a device reports revision 0, the prefix will contain \t0\t, which will not match these newly added \t00\t entries, so the name lookup will fail and fall back to PCI IDs. Consider adding equivalent entries with revision 0 (or updating the lookup to use %02X in a follow-up) to avoid this mismatch for revision-zero devices.
No description provided.