mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-04 14:08:05 +02:00
radv: enable SPM for GFX11.5
This adds support for performance counters with RGP on GFX11.5. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39270>
This commit is contained in:
parent
adfb1ddebf
commit
14deea2633
1 changed files with 1 additions and 1 deletions
|
|
@ -600,7 +600,7 @@ radv_device_init_rgp(struct radv_device *device)
|
|||
radv_sqtt_queue_events_enabled() ? "enabled" : "disabled");
|
||||
|
||||
if (radv_spm_trace_enabled(pdev)) {
|
||||
if (pdev->info.gfx_level >= GFX10 && pdev->info.gfx_level <= GFX12 && pdev->info.gfx_level != GFX11_5) {
|
||||
if (pdev->info.gfx_level >= GFX10 && pdev->info.gfx_level <= GFX12) {
|
||||
if (!radv_spm_init(device))
|
||||
return VK_ERROR_INITIALIZATION_FAILED;
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue