From aa77d8128e93e2ea637c7fcacb88f628ecdb1239 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 27 Mar 2020 14:40:04 -0400 Subject: [PATCH] pan/bi: Handle f2f* opcodes Just more converts that got missed. Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/bifrost_compile.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/panfrost/bifrost/bifrost_compile.c b/src/panfrost/bifrost/bifrost_compile.c index 23e451f0761..3d6b0ab3cad 100644 --- a/src/panfrost/bifrost/bifrost_compile.c +++ b/src/panfrost/bifrost/bifrost_compile.c @@ -379,6 +379,10 @@ bi_class_for_nir_alu(nir_op op) case nir_op_u2f16: case nir_op_u2f32: case nir_op_u2f64: + case nir_op_f2f16: + case nir_op_f2f32: + case nir_op_f2f64: + case nir_op_f2fmp: return BI_CONVERT; case nir_op_vec2: -- 2.30.2