Lines Matching refs:execution_mode
1197 nir_is_float_control_signed_zero_inf_nan_preserve(unsigned execution_mode, unsigned bit_size) in nir_is_float_control_signed_zero_inf_nan_preserve() argument
1199 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP16) || in nir_is_float_control_signed_zero_inf_nan_preserve()
1200 (32 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP32) || in nir_is_float_control_signed_zero_inf_nan_preserve()
1201 (64 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP64); in nir_is_float_control_signed_zero_inf_nan_preserve()
1205 nir_is_denorm_flush_to_zero(unsigned execution_mode, unsigned bit_size) in nir_is_denorm_flush_to_zero() argument
1207 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16) || in nir_is_denorm_flush_to_zero()
1208 (32 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP32) || in nir_is_denorm_flush_to_zero()
1209 (64 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP64); in nir_is_denorm_flush_to_zero()
1213 nir_is_denorm_preserve(unsigned execution_mode, unsigned bit_size) in nir_is_denorm_preserve() argument
1215 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP16) || in nir_is_denorm_preserve()
1216 (32 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP32) || in nir_is_denorm_preserve()
1217 (64 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP64); in nir_is_denorm_preserve()
1221 nir_is_rounding_mode_rtne(unsigned execution_mode, unsigned bit_size) in nir_is_rounding_mode_rtne() argument
1223 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP16) || in nir_is_rounding_mode_rtne()
1224 (32 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP32) || in nir_is_rounding_mode_rtne()
1225 (64 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP64); in nir_is_rounding_mode_rtne()
1229 nir_is_rounding_mode_rtz(unsigned execution_mode, unsigned bit_size) in nir_is_rounding_mode_rtz() argument
1231 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP16) || in nir_is_rounding_mode_rtz()
1232 (32 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP32) || in nir_is_rounding_mode_rtz()
1233 (64 == bit_size && execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP64); in nir_is_rounding_mode_rtz()
1237 nir_has_any_rounding_mode_rtz(unsigned execution_mode) in nir_has_any_rounding_mode_rtz() argument
1239 return (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP16) || in nir_has_any_rounding_mode_rtz()
1240 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP32) || in nir_has_any_rounding_mode_rtz()
1241 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTZ_FP64); in nir_has_any_rounding_mode_rtz()
1245 nir_has_any_rounding_mode_rtne(unsigned execution_mode) in nir_has_any_rounding_mode_rtne() argument
1247 return (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP16) || in nir_has_any_rounding_mode_rtne()
1248 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP32) || in nir_has_any_rounding_mode_rtne()
1249 (execution_mode & FLOAT_CONTROLS_ROUNDING_MODE_RTE_FP64); in nir_has_any_rounding_mode_rtne()
1253 nir_get_rounding_mode_from_float_controls(unsigned execution_mode, in nir_get_rounding_mode_from_float_controls() argument
1261 if (nir_is_rounding_mode_rtz(execution_mode, bit_size)) in nir_get_rounding_mode_from_float_controls()
1263 if (nir_is_rounding_mode_rtne(execution_mode, bit_size)) in nir_get_rounding_mode_from_float_controls()
1269 nir_has_any_rounding_mode_enabled(unsigned execution_mode) in nir_has_any_rounding_mode_enabled() argument
1272 nir_has_any_rounding_mode_rtne(execution_mode) || in nir_has_any_rounding_mode_enabled()
1273 nir_has_any_rounding_mode_rtz(execution_mode); in nir_has_any_rounding_mode_enabled()