diff options
author | Alyssa Rosenzweig <[email protected]> | 2020-03-31 13:05:02 -0400 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-01 02:25:05 +0000 |
commit | ae4f48b2bc3b9e1969be738fe230a7b5a880bd0d (patch) | |
tree | ca076c31357dd2490d9ad8e6e7d44a33277779d8 /src | |
parent | 0b241c70b6a1f39840aec2fe5db43f0e33221d7b (diff) |
pan/bi: Don't set the back-to-back bit yet
This is bad for performance but we can't assume it's true without some
analysis, which we presently don't do. Leave it for future work and
don't break the present.
Signed-off-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4396>
Diffstat (limited to 'src')
-rw-r--r-- | src/panfrost/bifrost/bi_schedule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panfrost/bifrost/bi_schedule.c b/src/panfrost/bifrost/bi_schedule.c index 0f72fc12713..b3f7ca605c3 100644 --- a/src/panfrost/bifrost/bi_schedule.c +++ b/src/panfrost/bifrost/bi_schedule.c @@ -139,7 +139,7 @@ bi_schedule(bi_context *ctx) ids = ids & 1; last_id = u->scoreboard_id; - u->back_to_back = true; + u->back_to_back = false; u->constant_count = 1; u->constants[0] = ins->constant.u64; |