Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reduce_type_precision (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      pass_config.enable_hlo_to_tf_conversion = enable_hlo_to_tf_conversion;
      pass_config.disable_hlo_to_tfl_conversion = disable_hlo_to_tfl_conversion;
      pass_config.reduce_type_precision = reduce_type_precision;
    
      toco::TocoFlags toco_flags;
      toco_flags.set_force_select_tf_ops(!emit_builtin_tflite_ops);
      toco_flags.set_enable_select_tf_ops(emit_select_tf_ops);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

          AddDynamicRangeQuantizationPasses(pass_config, *pass_manager);
        }
        pass_manager->addPass(mlir::createCanonicalizerPass());
    
        if (pass_config.reduce_type_precision ||
            toco_flags.reduce_type_precision()) {
          pass_manager->addPass(mlir::TFL::CreateReduceTypePrecisionPass());
        }
    
        // This pass should be always at the end of the model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top