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)),