mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
broadcom/compiler: disable tmu pipelining when needed
disable_tmu_pipelining has been recently set to false on two
strategies that should set it to true.
Fixes the following CTS test:
dEQP-VK.graphicsfuzz.spv-stable-maze-flatten-copy-composite
Fixes: c950098ab - broadcom/compiler: move buffer loads to lower register pressure
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23207>
This commit is contained in:
parent
8dbd9925d5
commit
88ca89bea9
1 changed files with 2 additions and 2 deletions
|
|
@ -1726,8 +1726,8 @@ static const struct v3d_compiler_strategy strategies[] = {
|
|||
/*8*/ { "disable gcm (2t)", 2, 1, true, true, false, false, false, false, -1 },
|
||||
/*9*/ { "disable loop unrolling (2t)", 2, 1, true, true, true, false, false, false, -1 },
|
||||
/*10*/ { "Move buffer loads (2t)", 2, 1, true, true, true, true, true, false, -1 },
|
||||
/*11*/ { "disable TMU pipelining (2t)", 2, 1, true, true, true, true, true, false, -1 },
|
||||
/*12*/ { "fallback scheduler", 2, 1, true, true, true, true, true, false, -1 }
|
||||
/*11*/ { "disable TMU pipelining (2t)", 2, 1, true, true, true, true, true, true, -1 },
|
||||
/*12*/ { "fallback scheduler", 2, 1, true, true, true, true, true, true, -1 }
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue