agx: add missing b2b16 implementation

will show up with a subgroup lowering.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29179>
This commit is contained in:
Alyssa Rosenzweig 2024-04-23 18:05:20 -04:00 committed by Marge Bot
parent a3cb0cbfda
commit c2c49b261c

View file

@ -86,7 +86,7 @@ lower_pack = [
lower_selects = []
for T, sizes, one in [('f', [16, 32], 1.0),
('i', [8, 16, 32], 1),
('b', [32], -1)]:
('b', [16, 32], -1)]:
for size in sizes:
lower_selects.extend([
((f'b2{T}{size}', ('inot', 'a@1')), ('bcsel', a, 0, one)),