From 4b1a4dd32952f99340d97ab420ea64e4c067a66a Mon Sep 17 00:00:00 2001 From: harakas Date: Fri, 9 Feb 2024 16:29:08 +0200 Subject: [PATCH] Improved wording and clarified text --- docs/docs/configuration/object_detectors.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index fba94d18d..168d45c6b 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -469,8 +469,8 @@ services: Figuring out what version you need can be complicated as you can't tell the chipset name and driver from the AMD brand name. - first make sure that rocm environment is running properly by running `/opt/rocm/bin/rocminfo` in the frigate container -- it should list both the CPU and the GPU with their properties - - find the chipset version (gfxNNN) your systerm as from the output of the `rocminfo` (see below) - - use a search engine to query what HSA_OVERRIDE_GFX_VERSION you need for the given gfx name ("gfxNNN ROCm HSA_OVERRIDE_GFX_VERSION") + - find the chipset version you have (gfxNNN) from the output of the `rocminfo` (see below) + - use a search engine to query what `HSA_OVERRIDE_GFX_VERSION` you need for the given gfx name ("gfxNNN ROCm HSA_OVERRIDE_GFX_VERSION") - override the `HSA_OVERRIDE_GFX_VERSION` with relevant value - if things are not working check the frigate docker logs @@ -482,7 +482,7 @@ $ docker exec -it frigate /opt/rocm/bin/rocminfo #### Figuring out your AMD GPU chipset version: -We unset the `HSA_OVERRIDE_GFX_VERSION` to prevent the override from messing up the result: +We unset the `HSA_OVERRIDE_GFX_VERSION` to prevent an existing override from messing up the result: ```bash $ docker exec -it frigate /bin/bash -c '(unset HSA_OVERRIDE_GFX_VERSION && /opt/rocm/bin/rocminfo |grep gfx)'