From c2c49b261cf133e5da53a6ec46fe5bce09b75bf4 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 23 Apr 2024 18:05:20 -0400 Subject: [PATCH] agx: add missing b2b16 implementation will show up with a subgroup lowering. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_nir_algebraic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asahi/compiler/agx_nir_algebraic.py b/src/asahi/compiler/agx_nir_algebraic.py index 60568f9f3c6..6beebcd0a9f 100644 --- a/src/asahi/compiler/agx_nir_algebraic.py +++ b/src/asahi/compiler/agx_nir_algebraic.py @@ -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)),