Don't mention 9.0.0 GFX version (#19742)

This commit is contained in:
Nicolas Mowen 2025-08-25 06:32:50 -06:00 committed by GitHub
parent 4fe246f472
commit 4347402fcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -440,14 +440,13 @@ Also AMD/ROCm does not "officially" support integrated GPUs. It still does work
For the rocm frigate build there is some automatic detection: For the rocm frigate build there is some automatic detection:
- gfx90c -> 9.0.0
- gfx1031 -> 10.3.0 - gfx1031 -> 10.3.0
- gfx1103 -> 11.0.0 - gfx1103 -> 11.0.0
If you have something else you might need to override the `HSA_OVERRIDE_GFX_VERSION` at Docker launch. Suppose the version you want is `9.0.0`, then you should configure it from command line as: If you have something else you might need to override the `HSA_OVERRIDE_GFX_VERSION` at Docker launch. Suppose the version you want is `10.0.0`, then you should configure it from command line as:
```bash ```bash
$ docker run -e HSA_OVERRIDE_GFX_VERSION=9.0.0 \ $ docker run -e HSA_OVERRIDE_GFX_VERSION=10.0.0 \
... ...
``` ```
@ -458,7 +457,7 @@ services:
frigate: frigate:
environment: environment:
HSA_OVERRIDE_GFX_VERSION: "9.0.0" HSA_OVERRIDE_GFX_VERSION: "10.0.0"
``` ```
Figuring out what version you need can be complicated as you can't tell the chipset name and driver from the AMD brand name. Figuring out what version you need can be complicated as you can't tell the chipset name and driver from the AMD brand name.