nir: rename nir_op_fne to nir_op_fneu
[mesa.git] / src / panfrost / bifrost / bifrost_nir_algebraic.py
index 6f3f6eee1a901fe5a214322ac2b9549f973267ed..974bdf2c8998436078bd0a792b4225cdcb9f29e6 100644 (file)
@@ -86,7 +86,7 @@ SPECIAL = ['fexp2', 'flog2', 'fsin', 'fcos']
 for op in SPECIAL:
         converts += [((op + '@16', a), ('f2f16', (op, ('f2f32', a))))]
 
-converts += [(('f2b32', a), ('fne32', a, 0.0)),
+converts += [(('f2b32', a), ('fneu32', a, 0.0)),
              (('i2b32', a), ('ine32', a, 0)),
              (('b2i32', a), ('iand', 'a@32', 1))]