mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
radeonsi: test more alignment cases in si_test_dma_perf
Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30208>
This commit is contained in:
parent
fa53a23031
commit
a48a376bc5
1 changed files with 20 additions and 0 deletions
|
|
@ -60,6 +60,16 @@ enum {
|
|||
ALIGN_4,
|
||||
ALIGN_2,
|
||||
ALIGN_1,
|
||||
ALIGN_SRC128,
|
||||
ALIGN_SRC64,
|
||||
ALIGN_SRC4,
|
||||
ALIGN_SRC2,
|
||||
ALIGN_SRC1,
|
||||
ALIGN_DST128,
|
||||
ALIGN_DST64,
|
||||
ALIGN_DST4,
|
||||
ALIGN_DST2,
|
||||
ALIGN_DST1,
|
||||
ALIGN_SRC4_DST2,
|
||||
ALIGN_SRC4_DST1,
|
||||
ALIGN_SRC2_DST4,
|
||||
|
|
@ -83,6 +93,16 @@ static const struct align_info_t align_info[] = {
|
|||
[ALIGN_4] = {"both=4", 4, 4},
|
||||
[ALIGN_2] = {"both=2", 2, 2},
|
||||
[ALIGN_1] = {"both=1", 1, 1},
|
||||
[ALIGN_SRC128] = {"src=128", 128, 0},
|
||||
[ALIGN_SRC64] = {"src=64", 64, 0},
|
||||
[ALIGN_SRC4] = {"src=4", 4, 0},
|
||||
[ALIGN_SRC2] = {"src=2", 2, 0},
|
||||
[ALIGN_SRC1] = {"src=1", 1, 0},
|
||||
[ALIGN_DST128] = {"dst=128", 0, 128},
|
||||
[ALIGN_DST64] = {"dst=64", 0, 64},
|
||||
[ALIGN_DST4] = {"dst=4", 0, 4},
|
||||
[ALIGN_DST2] = {"dst=2", 0, 2},
|
||||
[ALIGN_DST1] = {"dst=1", 0, 1},
|
||||
[ALIGN_SRC4_DST2] = {"src=4 dst=2", 4, 2},
|
||||
[ALIGN_SRC4_DST1] = {"src=4 dst=1", 4, 1},
|
||||
[ALIGN_SRC2_DST4] = {"src=2 dst=4", 2, 4},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue