mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 21:50:11 +01:00
aco: adjust an assertion about the wavesize in emit_gfx10_wave64_bpermute()
This gets rids of one more use of radv_shader_info. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Rhys Perry <pendingchaos02@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7061>
This commit is contained in:
parent
112e66fa09
commit
20d73a9049
1 changed files with 1 additions and 1 deletions
|
|
@ -815,7 +815,7 @@ void emit_gfx10_wave64_bpermute(Program *program, aco_ptr<Instruction> &instr, B
|
|||
*/
|
||||
|
||||
assert(program->chip_class >= GFX10);
|
||||
assert(program->info->wave_size == 64);
|
||||
assert(program->wave_size == 64);
|
||||
|
||||
unsigned shared_vgpr_reg_0 = align(program->config->num_vgprs, 4) + 256;
|
||||
Definition dst = instr->definitions[0];
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue