mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-27 00:10:40 +02:00
aco: set program->dev.fused_mad_mix=true for GFX940
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35655>
This commit is contained in:
parent
8c4f0b1353
commit
849344dc08
1 changed files with 2 additions and 1 deletions
|
|
@ -171,7 +171,8 @@ init_program(Program* program, Stage stage, const struct aco_shader_info* info,
|
|||
|
||||
program->dev.fused_mad_mix = program->gfx_level >= GFX10;
|
||||
if (program->family == CHIP_VEGA12 || program->family == CHIP_VEGA20 ||
|
||||
program->family == CHIP_MI100 || program->family == CHIP_MI200)
|
||||
program->family == CHIP_MI100 || program->family == CHIP_MI200 ||
|
||||
program->family == CHIP_GFX940)
|
||||
program->dev.fused_mad_mix = true;
|
||||
|
||||
if (program->gfx_level >= GFX12) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue