mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-09 10:08:17 +02:00
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:
parent
e99765df08
commit
02b6f4ef6b
1 changed files with 2 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue