mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 13:20:14 +01:00
radeonsi: compute perf tests - don't test 1 wave/SA limit, test no limit first
1 wave/SA is always slow and thus not useful Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4935>
This commit is contained in:
parent
c45a2145f5
commit
5acf99e81f
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ 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[] = {1, 2, 4, 8, 16, 0};
|
||||
static const unsigned cs_waves_per_sh_list[] = {0, 2, 4, 8, 16};
|
||||
|
||||
#define NUM_SHADERS ARRAY_SIZE(cs_dwords_per_thread_list)
|
||||
#define NUM_METHODS (4 + 2 * NUM_SHADERS * ARRAY_SIZE(cs_waves_per_sh_list))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue