From 01d2aa1d536bb068d6077a4cce6f421680d5f538 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 5 Nov 2024 17:43:16 -0400 Subject: [PATCH] agx: fix bfeil timing Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/agx_performance.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asahi/compiler/agx_performance.c b/src/asahi/compiler/agx_performance.c index 2851fe44c34..65376ddee4c 100644 --- a/src/asahi/compiler/agx_performance.c +++ b/src/asahi/compiler/agx_performance.c @@ -85,6 +85,7 @@ struct alu_timing op_timings[] = { [AGX_OPCODE_IMAD] = { IC, 3, 2 }, [AGX_OPCODE_BFI] = { IC, 3, 2 }, + [AGX_OPCODE_BFEIL] = { IC, 3, 2 }, [AGX_OPCODE_EXTR] = { IC, 3, 2 }, [AGX_OPCODE_ASR] = { IC, 3, 2 }, [AGX_OPCODE_FLOOR] = { IC, 3, 2 },