aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-04-13 20:03:48 -0400
committerAlyssa Rosenzweig <[email protected]>2020-04-17 16:25:34 -0400
commit83d961b0c26874622a0c72cebfa40ef4952ae5d3 (patch)
tree30130d2ceadb1a356e0030f96ae5d9ec37b7b563 /src/panfrost
parent86c0ea383db65b5ec019143606189231bdc65066 (diff)
pan/bi: Disable FMA scheduling for CONVERT
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4615>
Diffstat (limited to 'src/panfrost')
-rw-r--r--src/panfrost/bifrost/bi_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bi_tables.c b/src/panfrost/bifrost/bi_tables.c
index 349521b4b4d..81511a9a147 100644
--- a/src/panfrost/bifrost/bi_tables.c
+++ b/src/panfrost/bifrost/bi_tables.c
@@ -34,7 +34,7 @@ unsigned bi_class_props[BI_NUM_CLASSES] = {
[BI_BLEND] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_SRC,
[BI_BITWISE] = BI_GENERIC | BI_SCHED_ALL,
[BI_COMBINE] = 0,
- [BI_CONVERT] = BI_SCHED_ALL | BI_SWIZZLABLE | BI_ROUNDMODE,
+ [BI_CONVERT] = BI_SCHED_ADD | BI_SWIZZLABLE | BI_ROUNDMODE, /* +FMA on G71 */
[BI_CSEL] = BI_SCHED_FMA,
[BI_DISCARD] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD,
[BI_FMA] = BI_ROUNDMODE | BI_SCHED_FMA | BI_MODS,