mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-03-17 12:30:33 +01:00
aco/insert_fp_mode: don't skip setting round for fract
fract(-FLT_MIN) is < 1.0 with rtz but 1.0 with rtne.
Fixes: 7212a75c5e ("aco/insert_fp_mode: exclude some instructions that will never round")
Reviewed-by: Daniel Schürmann <daniel@schuermann.dev>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/40078>
This commit is contained in:
parent
788a8ab239
commit
8f4de30d05
1 changed files with 0 additions and 3 deletions
|
|
@ -233,9 +233,6 @@ instr_ignores_round_mode(const Instruction* instr)
|
|||
case aco_opcode::v_rndne_f64:
|
||||
case aco_opcode::v_rndne_f32:
|
||||
case aco_opcode::v_rndne_f16:
|
||||
case aco_opcode::v_fract_f64:
|
||||
case aco_opcode::v_fract_f32:
|
||||
case aco_opcode::v_fract_f16:
|
||||
case aco_opcode::s_min_f32:
|
||||
case aco_opcode::s_min_f16:
|
||||
case aco_opcode::s_max_f32:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue