aboutsummaryrefslogtreecommitdiffstats
path: root/src/panfrost/bifrost/bi_tables.c
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-04-24 17:20:07 -0400
committerMarge Bot <[email protected]>2020-04-27 14:52:26 +0000
commitde12311431a6623eb4239fa6c566025174cb016f (patch)
treed2ab204eeb102ce04650334438b3fad1951b599a /src/panfrost/bifrost/bi_tables.c
parent667190d38a7afeeef39889a933b08c348503c071 (diff)
pan/bi: Add missing BI_VECTOR
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4766>
Diffstat (limited to 'src/panfrost/bifrost/bi_tables.c')
-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 253b26e4ebd..eefc6ca9b7b 100644
--- a/src/panfrost/bifrost/bi_tables.c
+++ b/src/panfrost/bifrost/bi_tables.c
@@ -44,7 +44,7 @@ unsigned bi_class_props[BI_NUM_CLASSES] = {
[BI_LOAD_UNIFORM] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_LOAD_ATTR] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_LOAD_VAR] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
- [BI_LOAD_VAR_ADDRESS] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_DATA_REG_DEST,
+ [BI_LOAD_VAR_ADDRESS] = BI_SCHED_HI_LATENCY | BI_SCHED_ADD | BI_VECTOR | BI_DATA_REG_DEST,
[BI_MINMAX] = BI_GENERIC | BI_SCHED_ADD | BI_NO_ABS_ABS_FP16_FMA | BI_MODS, /* | FMA on some? */
[BI_MOV] = BI_SCHED_ALL,
[BI_FMOV] = BI_MODS | BI_SCHED_ALL,