amd: increase the attribute ring size on gfx1103_r1
authorMarek Olšák <marek.olsak@amd.com>
Mon, 5 Jun 2023 17:51:10 +0000 (13:51 -0400)
committerMarge Bot <emma+marge@anholt.net>
Sat, 17 Jun 2023 23:42:20 +0000 (23:42 +0000)
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23687>

src/amd/common/ac_gpu_info.c

index d5607fb..a27a496 100644 (file)
@@ -1485,10 +1485,10 @@ bool ac_query_gpu_info(int fd, void *dev_p, struct radeon_info *info)
    if (info->gfx_level >= GFX11) {
       switch (info->family) {
       case CHIP_GFX1103_R1:
-         info->attribute_ring_size_per_se = 512 * 1024;
+         info->attribute_ring_size_per_se = 768 * 1024;
          break;
       case CHIP_GFX1103_R2:
-         /* TODO: Test if 192 * 1024 is faster. */
+         /* TODO: Test if 192K or 384K is faster. */
          info->attribute_ring_size_per_se = 256 * 1024;
          break;
       default: