From: Alyssa Rosenzweig Date: Tue, 28 Apr 2020 16:41:14 +0000 (-0400) Subject: pan/bi: Relax double-abs condition X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b8724c34016430c95ca68dd9a01280eb93c7cec;p=mesa.git pan/bi: Relax double-abs condition Only if both ports (<==> registers) same. Signed-off-by: Alyssa Rosenzweig Part-of: --- diff --git a/src/panfrost/bifrost/bi_pack.c b/src/panfrost/bifrost/bi_pack.c index 28625ade980..aa8d590c733 100644 --- a/src/panfrost/bifrost/bi_pack.c +++ b/src/panfrost/bifrost/bi_pack.c @@ -617,7 +617,7 @@ bi_pack_fp16_abs(bi_instruction *ins, struct bi_registers *regs, bool *flip) unsigned src_0 = bi_get_src(ins, regs, 0, true); unsigned src_1 = bi_get_src(ins, regs, 1, true); - assert(!(abs_0 && abs_1)); + assert(!(abs_0 && abs_1 && src_0 == src_1)); if (!abs_0 && !abs_1) { /* Force k = 0 <===> NOT(src1 < src0) */