diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-03-27 22:34:15 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-03-31 01:12:26 +0000 |
commit | c88f816169cf2efa0bfcbe1e9a5b0c7948fb1ade (patch) | |
tree | 77e5bd2f6324b8436803e54d2d4618534e61f117 /src/panfrost/pandecode | |
parent | ba8e11f0f173fd5e5ec376c6e7e582ea845b7499 (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.c | 2 |
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; |