fd: support a8xx in rddecompiler
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Propery initialize rddecompiler's RNN instance for a8xx dumps.

Signed-off-by: Zan Dobersek <zdobersek@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40661>
This commit is contained in:
Zan Dobersek 2026-03-10 18:12:14 +01:00 committed by Marge Bot
parent fe558d8328
commit d5b9411331

View file

@ -611,6 +611,9 @@ emit_header()
case 7:
init_rnn("a7xx");
break;
case 8:
init_rnn("a8xx");
break;
default:
errx(-1, "unsupported gpu: %u", dev_id.gpu_id);
}