summaryrefslogtreecommitdiffstats
path: root/src/panfrost/pandecode
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-03-27 22:34:15 -0400
committerMarge Bot <[email protected]>2020-03-31 01:12:26 +0000
commitc88f816169cf2efa0bfcbe1e9a5b0c7948fb1ade (patch)
tree77e5bd2f6324b8436803e54d2d4618534e61f117 /src/panfrost/pandecode
parentba8e11f0f173fd5e5ec376c6e7e582ea845b7499 (diff)
pan/bi: Handle abs packing for fp16/FMA add/min
It's seriously quirky, and all to save a single bit. Alas. It also introduces an edge case for the scheduler which is a bit annoying. Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4382>
Diffstat (limited to 'src/panfrost/pandecode')
-rw-r--r--src/panfrost/pandecode/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/pandecode/decode.c b/src/panfrost/pandecode/decode.c
index af885538f0e..917f4674667 100644
--- a/src/panfrost/pandecode/decode.c
+++ b/src/panfrost/pandecode/decode.c
@@ -1929,7 +1929,7 @@ pandecode_shader_disassemble(mali_ptr shader_ptr, int shader_no, int type,
struct midgard_disasm_stats stats;
if (is_bifrost) {
- disassemble_bifrost(pandecode_dump_stream, code, sz, false);
+ disassemble_bifrost(pandecode_dump_stream, code, sz, true);
/* TODO: Extend stats to Bifrost */
stats.texture_count = -128;