Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for emit_builtin_tflite_ops (0.43 sec)

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

      // Convert to flatbuffer.
      std::string serialized_flatbuffer;
      tflite::FlatbufferExportOptions options;
      options.toco_flags.set_force_select_tf_ops(!emit_builtin_tflite_ops);
      options.toco_flags.set_enable_select_tf_ops(emit_select_tf_ops);
      options.toco_flags.set_allow_custom_ops(emit_custom_ops);
      if (!tflite::MlirToFlatBufferTranslateFunction(module.get(), options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      // The tensorflow list is not supported right now by that pass.
      // Enable fusing composite ops that can be lowered to built-in TFLite ops.
      if (pass_config.emit_builtin_tflite_ops &&
          toco_flags.tf_quantization_mode().empty()) {
        pass_manager->addPass(mlir::TFL::CreatePrepareCompositeFunctionsPass());
      }
    
      pass_manager->addPass(mlir::createInlinerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

      }
    
      // TODO: b/176267167 - Quantize flex fallback in the MLIR pipeline
      if (quant_specs.weight_quantization &&
          (!quant_specs.RunAndRewriteDynamicRangeQuantizationPasses() ||
           !pass_config.emit_builtin_tflite_ops)) {
        // Apply post-training dynamic range quantization from the old TOCO
        // quantizer.Once MLIR has support for this, we can remove this if
        // statement.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top