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>
This commit is contained in:
Marek Olšák 2024-03-11 21:04:45 -04:00 committed by Marge Bot
parent e99765df08
commit 02b6f4ef6b

View file

@ -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))