Mesa (master): winsys/radeon: initialize SIMD properties in radeon_info

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Mon Oct 7 22:50:38 UTC 2019


Module: Mesa
Branch: master
Commit: 3b2b83924e3185ba635739667aea849ad6869efb
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3b2b83924e3185ba635739667aea849ad6869efb

Author: Marek Olšák <marek.olsak at amd.com>
Date:   Mon Sep 30 15:14:11 2019 -0400

winsys/radeon: initialize SIMD properties in radeon_info

This was missed when I added them.

Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/1839
Fixes: 0692ae34e93 ("ac: move ac_get_num_physical_sgprs into radeon_info")

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>

---

 src/gallium/winsys/radeon/drm/radeon_drm_winsys.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
index 1630e93d2d6..36d506b4928 100644
--- a/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
+++ b/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
@@ -589,6 +589,9 @@ static bool do_winsys_init(struct radeon_drm_winsys *ws)
     ws->info.max_alignment = 1024*1024;
     ws->info.has_graphics = true;
     ws->info.cpdma_prefetch_writes_memory = true;
+    ws->info.max_wave64_per_simd = 10;
+    ws->info.num_physical_sgprs_per_simd = 512;
+    ws->info.num_physical_wave64_vgprs_per_simd = 256;
 
     ws->check_vm = strstr(debug_get_option("R600_DEBUG", ""), "check_vm") != NULL ||
                    strstr(debug_get_option("AMD_DEBUG", ""), "check_vm") != NULL;




More information about the mesa-commit mailing list