summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2024-03-11 21:04:45 -0400
committerMarge Bot <emma+marge@anholt.net>2024-03-12 23:00:00 +0000
commit02b6f4ef6b76c8ee65be5ad38a1fc71306a93a42 (patch)
tree267818ef5ac08d9abbaf34c51ba5528f29759e33
parente99765df08c7fe6be836022896152bbca7a94ff4 (diff)
radeonsi: don't test so many wave limits for AMD_TEST=testdmaperf
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28119>
-rw-r--r--src/gallium/drivers/radeonsi/si_test_dma_perf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/radeonsi/si_test_dma_perf.c b/src/gallium/drivers/radeonsi/si_test_dma_perf.c
index b09d9752f5f..ac6846122ac 100644
--- a/src/gallium/drivers/radeonsi/si_test_dma_perf.c
+++ b/src/gallium/drivers/radeonsi/si_test_dma_perf.c
@@ -26,7 +26,8 @@ void si_test_dma_perf(struct si_screen *sscreen)
struct si_context *sctx = (struct si_context *)ctx;
const uint32_t clear_value = 0x12345678;
static const unsigned cs_dwords_per_thread_list[] = {64, 32, 16, 8, 4, 2, 1};
- static const unsigned cs_waves_per_sh_list[] = {0, 4, 8, 16};
+ /* The list of per-SA wave limits to test. */
+ static const unsigned cs_waves_per_sh_list[] = {0, 8};
#define NUM_SHADERS ARRAY_SIZE(cs_dwords_per_thread_list)
#define NUM_METHODS (3 + 3 * NUM_SHADERS * ARRAY_SIZE(cs_waves_per_sh_list))