aco: add GFX11 opcode numbers
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17333>
This commit is contained in:
@@ -54,8 +54,10 @@ struct asm_context {
|
||||
opcode = &instr_info.opcode_gfx7[0];
|
||||
else if (gfx_level <= GFX9)
|
||||
opcode = &instr_info.opcode_gfx9[0];
|
||||
else if (gfx_level >= GFX10)
|
||||
else if (gfx_level <= GFX10_3)
|
||||
opcode = &instr_info.opcode_gfx10[0];
|
||||
else if (gfx_level >= GFX11)
|
||||
opcode = &instr_info.opcode_gfx11[0];
|
||||
}
|
||||
|
||||
int subvector_begin_pos = -1;
|
||||
|
||||
Reference in New Issue
Block a user