mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-29 04:10:53 +02:00
aco_validate: allow for wave32 in p_dual_src_export_gfx11
Fixes RADV_PERFTEST=pswave32
Fixes: bb90d29660 ("aco: add p_dual_src_export_gfx11 for dual source blending on GFX11")
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21934>
This commit is contained in:
parent
a2e5e7daa0
commit
f5e5ec180c
1 changed files with 2 additions and 3 deletions
|
|
@ -557,9 +557,8 @@ validate_ir(Program* program)
|
|||
check(instr->definitions[2].getTemp().type() == RegType::vgpr &&
|
||||
instr->definitions[2].getTemp().size() == 1,
|
||||
"Third definition of p_dual_src_export_gfx11 must be a v1", instr.get());
|
||||
check(instr->definitions[3].getTemp().type() == RegType::sgpr &&
|
||||
instr->definitions[3].getTemp().size() == 2,
|
||||
"Fourth definition of p_dual_src_export_gfx11 must be a s2", instr.get());
|
||||
check(instr->definitions[3].regClass() == program->lane_mask,
|
||||
"Fourth definition of p_dual_src_export_gfx11 must be a lane mask", instr.get());
|
||||
check(instr->definitions[4].physReg() == vcc,
|
||||
"Fifth definition of p_dual_src_export_gfx11 must be vcc", instr.get());
|
||||
check(instr->definitions[5].physReg() == scc,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue