mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 22:40:09 +01:00
r600/sfn: Fix readport cylce map
This is currently of no consequence, because the bank swizzle codes are only used to check legal ALU group configuration and the bank swizzles are not yet allocated to the instruictions here. Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21516>
This commit is contained in:
parent
b5b7ca0ad3
commit
b6303d33ec
1 changed files with 1 additions and 1 deletions
|
|
@ -219,8 +219,8 @@ AluReadportReservation::cycle_vec(AluBankSwizzle swz, int src)
|
|||
static const int mapping[AluBankSwizzle::alu_vec_unknown][max_gpr_readports] = {
|
||||
{0, 1, 2},
|
||||
{0, 2, 1},
|
||||
{1, 0, 2},
|
||||
{1, 2, 0},
|
||||
{1, 0, 2},
|
||||
{2, 0, 1},
|
||||
{2, 1, 0}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue