Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for legalize_custom_tensor_list_ops (0.5 sec)

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

      pass_config.outline_tf_while = true;
      pass_config.preserve_assert_op = preserve_assert_op;
      pass_config.enable_stablehlo_conversion = enable_stablehlo_conversion;
      pass_config.legalize_custom_tensor_list_ops = legalize_custom_tensor_list_ops;
      pass_config.enable_hlo_to_tf_conversion = enable_hlo_to_tf_conversion;
      pass_config.disable_hlo_to_tfl_conversion = disable_hlo_to_tfl_conversion;
    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/python/saved_model_to_tfl_flatbuffer.cc

      pass_config.guarantee_all_funcs_one_use =
          toco_flags.guarantee_all_funcs_one_use();
      pass_config.enable_stablehlo_conversion = toco_flags.convert_to_stablehlo();
      pass_config.legalize_custom_tensor_list_ops =
          toco_flags.legalize_custom_tensor_list_ops();
      pass_config.enable_stablehlo_quantizer = toco_flags.has_quantization_config();
      pass_config.enable_composite_direct_lowering =
          toco_flags.enable_composite_direct_lowering();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      }
    
      pass_manager->addPass(mlir::createInlinerPass());
      pass_manager->addPass(mlir::createSymbolDCEPass());
    
      if (pass_config.legalize_custom_tensor_list_ops) {
        pass_manager->addPass(mlir::TFL::CreateLegalizeTensorListPass());
      }
    
      if (pass_config.lower_tensor_list_ops &&
          toco_flags.tf_quantization_mode().empty()) {
    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