mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 13:10:10 +01:00
aco: allow gfx10_wave64_bpermute with 8-bit/16-bit input
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5148>
This commit is contained in:
parent
8ece71507d
commit
83dcd1690b
1 changed files with 1 additions and 1 deletions
|
|
@ -1522,7 +1522,7 @@ void lower_to_hw_instr(Program* program)
|
|||
assert(instr->operands[0].physReg() == vcc); /* Compare */
|
||||
assert(instr->operands[1].regClass() == v2.as_linear()); /* Temp VGPR pair */
|
||||
assert(instr->operands[2].regClass() == v1); /* Indices x4 */
|
||||
assert(instr->operands[3].regClass() == v1); /* Input data */
|
||||
assert(instr->operands[3].bytes() <= 4); /* Indices x4 */
|
||||
|
||||
PhysReg shared_vgpr_reg_lo = PhysReg(align(program->config->num_vgprs, 4) + 256);
|
||||
PhysReg shared_vgpr_reg_hi = PhysReg(shared_vgpr_reg_lo + 1);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue