HomeSort by: relevance | last modified time | path
    Searched refs:execution_mode (Results 1 - 11 of 11) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_loop_analyze.c 695 unsigned execution_mode)
700 nir_eval_const_opcode(op, &dest, 1, bit_size, src, execution_mode);
707 unsigned execution_mode)
712 nir_eval_const_opcode(op, &dest, 1, bit_size, src, execution_mode);
719 unsigned execution_mode)
729 execution_mode);
731 execution_mode);
737 execution_mode);
739 execution_mode);
747 execution_mode);
    [all...]
nir_constant_expressions.py 307 <%def name="evaluate_op(op, bit_size, execution_mode)">
386 if (nir_is_rounding_mode_rtz(execution_mode, 16)) {
397 if (nir_is_denorm_flush_to_zero(execution_mode, ${type_size(output_type)})) {
401 if (nir_is_denorm_flush_to_zero(execution_mode, ${bit_size})) {
433 if (nir_is_rounding_mode_rtz(execution_mode, 16)) {
444 if (nir_is_denorm_flush_to_zero(execution_mode, ${type_size(output_type)})) {
448 if (nir_is_denorm_flush_to_zero(execution_mode, ${bit_size})) {
468 UNUSED unsigned execution_mode)
474 ${evaluate_op(op, bit_size, execution_mode)}
483 ${evaluate_op(op, 0, execution_mode)}
    [all...]
nir.h 1263 nir_is_float_control_signed_zero_inf_nan_preserve(unsigned execution_mode, unsigned bit_size)
1265 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP16) ||
1266 (32 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP32) ||
1267 (64 == bit_size && execution_mode & FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP64);
1271 nir_is_denorm_flush_to_zero(unsigned execution_mode, unsigned bit_size)
1273 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16) ||
1274 (32 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP32) ||
1275 (64 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP64);
1279 nir_is_denorm_preserve(unsigned execution_mode, unsigned bit_size)
1281 return (16 == bit_size && execution_mode & FLOAT_CONTROLS_DENORM_PRESERVE_FP16) |
    [all...]
nir_search.c 877 const unsigned execution_mode = local
880 nir_is_float_control_signed_zero_inf_nan_preserve(execution_mode, bit_size) ||
881 nir_is_denorm_flush_to_zero(execution_mode, bit_size);
  /xsrc/external/mit/MesaLib/src/compiler/nir/
nir_constant_expressions.c 564 UNUSED unsigned execution_mode)
673 UNUSED unsigned execution_mode)
842 UNUSED unsigned execution_mode)
1011 UNUSED unsigned execution_mode)
1180 UNUSED unsigned execution_mode)
1349 UNUSED unsigned execution_mode)
1518 UNUSED unsigned execution_mode)
1687 UNUSED unsigned execution_mode)
1992 UNUSED unsigned execution_mode)
2269 UNUSED unsigned execution_mode)
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/compiler/spirv/
vtn_glsl450.c 241 unsigned execution_mode,
290 if (execution_mode & FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16)
609 unsigned execution_mode = local
612 nir_op op = vtn_nir_alu_op_for_spirv_glsl_opcode(b, entrypoint, execution_mode, &exact);
spirv_to_nir.c 5100 unsigned execution_mode = 0; local
5104 case 16: execution_mode = FLOAT_CONTROLS_DENORM_PRESERVE_FP16; break;
5105 case 32: execution_mode = FLOAT_CONTROLS_DENORM_PRESERVE_FP32; break;
5106 case 64: execution_mode = FLOAT_CONTROLS_DENORM_PRESERVE_FP64; break;
5112 case 16: execution_mode = FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16; break;
5113 case 32: execution_mode = FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP32; break;
5114 case 64: execution_mode = FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP64; break;
5120 case 16: execution_mode = FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP16; break;
5121 case 32: execution_mode = FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP32; break;
5122 case 64: execution_mode = FLOAT_CONTROLS_SIGNED_ZERO_INF_NAN_PRESERVE_FP64; break
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/intel/compiler/
brw_fs_visitor.cpp 263 unsigned execution_mode = this->nir->info.float_controls_execution_mode; local
264 if (execution_mode == FLOAT_CONTROLS_DEFAULT_FLOAT_CONTROL_MODE)
268 unsigned mask, mode = brw_rnd_mode_from_nir(execution_mode, &mask);
brw_fs_nir.cpp 667 brw_rnd_mode_from_execution_mode(unsigned execution_mode)
669 if (nir_has_any_rounding_mode_rtne(execution_mode))
671 if (nir_has_any_rounding_mode_rtz(execution_mode))
961 unsigned execution_mode = local
1059 rnd = brw_rnd_mode_from_execution_mode(execution_mode);
1179 if (nir_has_any_rounding_mode_enabled(execution_mode)) {
1181 brw_rnd_mode_from_execution_mode(execution_mode);
1244 if (nir_has_any_rounding_mode_enabled(execution_mode)) {
1246 brw_rnd_mode_from_execution_mode(execution_mode);
1310 if (nir_has_any_rounding_mode_enabled(execution_mode)) {
1703 assert(FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16 & execution_mode); variable
1711 assert(FLOAT_CONTROLS_DENORM_FLUSH_TO_ZERO_FP16 & execution_mode); variable
    [all...]
brw_fs.cpp 3635 unsigned execution_mode = this->nir->info.float_controls_execution_mode;
3641 execution_mode)
3646 execution_mode)
  /xsrc/external/mit/MesaLib/dist/src/freedreno/ir3/
ir3_compiler_nir.c 266 unsigned execution_mode = ctx->s->info.float_controls_execution_mode; local
268 nir_get_rounding_mode_from_float_controls(execution_mode,

Completed in 57 milliseconds