aco: add a new variant for vop1() with two operands
For v_movrels_b32 and friends which need a second operand for m0. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/32090>
This commit is contained in:
committed by
Marge Bot
parent
f4cf6a71ed
commit
40b343bbee
@@ -567,7 +567,7 @@ formats = [("pseudo", [Format.PSEUDO], list(itertools.product(range(5), range(6)
|
||||
("branch", [Format.PSEUDO_BRANCH], itertools.product([1], [0, 1])),
|
||||
("barrier", [Format.PSEUDO_BARRIER], [(0, 0)]),
|
||||
("reduction", [Format.PSEUDO_REDUCTION], [(3, 3)]),
|
||||
("vop1", [Format.VOP1], [(0, 0), (1, 1), (2, 2)]),
|
||||
("vop1", [Format.VOP1], [(0, 0), (1, 1), (1, 2), (2, 2)]),
|
||||
("vop1_sdwa", [Format.VOP1, Format.SDWA], [(1, 1)]),
|
||||
("vop2", [Format.VOP2], itertools.product([1, 2], [2, 3])),
|
||||
("vop2_sdwa", [Format.VOP2, Format.SDWA], itertools.product([1, 2], [2, 3])),
|
||||
|
||||
Reference in New Issue
Block a user