From ef781880eb3969620e19ba118410456e3ca300f6 Mon Sep 17 00:00:00 2001 From: Chris Forbes Date: Sun, 26 Jul 2020 10:43:33 -0700 Subject: [PATCH] bifrost: Add lowering for b2i32 Since the bool representation is 0/~0, we can convert to int just by &1. Signed-off-by: Chris Forbes Reviewed-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/bifrost_nir_algebraic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/panfrost/bifrost/bifrost_nir_algebraic.py b/src/panfrost/bifrost/bifrost_nir_algebraic.py index d28c82d401a..6f3f6eee1a9 100644 --- a/src/panfrost/bifrost/bifrost_nir_algebraic.py +++ b/src/panfrost/bifrost/bifrost_nir_algebraic.py @@ -87,7 +87,8 @@ for op in SPECIAL: converts += [((op + '@16', a), ('f2f16', (op, ('f2f32', a))))] converts += [(('f2b32', a), ('fne32', a, 0.0)), - (('i2b32', a), ('ine32', a, 0))] + (('i2b32', a), ('ine32', a, 0)), + (('b2i32', a), ('iand', 'a@32', 1))] def main(): parser = argparse.ArgumentParser() -- 2.30.2