Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for legalize_custom_tensor_list_ops (0.45 sec)

  1. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

                << pass_config.enable_hlo_to_tf_conversion
                << "\nenable_stablehlo_conversion: "
                << pass_config.enable_stablehlo_conversion
                << "\nlegalize_custom_tensor_list_ops: "
                << pass_config.legalize_custom_tensor_list_ops
                << "\nreduce_type_precision: " << pass_config.reduce_type_precision
                << "\nconvert_qdq_format: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

      pass_config.unfold_batch_matmul = toco_flags.unfold_batchmatmul();
      pass_config.lower_tensor_list_ops = toco_flags.lower_tensor_list_ops();
      pass_config.legalize_custom_tensor_list_ops =
          toco_flags.legalize_custom_tensor_list_ops();
      // Disable the unfolding of the 16x16 TF::BatchMatMulOp to avoid the
      // conversion to an unsupported 16x16 TFL::FullyConnectedOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    extern llvm::cl::opt<bool> guarantee_all_funcs_one_use;
    extern llvm::cl::opt<bool> enable_dynamic_update_slice;
    extern llvm::cl::opt<bool> preserve_assert_op;
    extern llvm::cl::opt<bool> legalize_custom_tensor_list_ops;
    extern llvm::cl::opt<bool> reduce_type_precision;
    
    // Import saved model.
    extern llvm::cl::opt<bool> import_saved_model_object_graph;
    extern llvm::cl::opt<bool> import_saved_model_signature_defs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

    opt<bool> post_training_quantization(
        "post-training-quantization",
        llvm::cl::desc("Enable post_training_quantization."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> legalize_custom_tensor_list_ops(
        "legalize-custom-tensor-list-ops",
        llvm::cl::desc("Convert \"tf.TensorList*\" ops to \"tfl.custom_op\""
                       "if they can all be supported."),
        llvm::cl::init(false));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. 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