Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for allow_all_select_tf_ops_ (0.68 sec)

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

          : module_(module),
            name_mapper_(*op_or_arg_name_mapper),
            builder_(kInitialBufferSize),
            saved_model_tags_(saved_model_tags),
            allow_all_select_tf_ops_(toco_flags.allow_all_select_tf_ops()),
            select_user_tf_ops_(toco_flags.select_user_tf_ops().begin(),
                                toco_flags.select_user_tf_ops().end()),
            metadata_(metadata),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.h

      // bool emit_select_tf_ops       -> toco_flags.enable_select_tf_ops()
      // bool emit_custom_ops          -> toco_flags.allow_custom_ops()
      // bool allow_all_select_tf_ops  -> toco_flags.allow_all_select_tf_ops()
      // std::set<> select_user_tf_ops -> toco_flags.select_user_tf_ops()
      toco::TocoFlags toco_flags;
      // When exporting from SavedModel, this will have the requested tags.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    extern llvm::cl::opt<std::string> quant_stats_file_name;
    extern llvm::cl::opt<bool> convert_tf_while_to_tfl_while;
    extern llvm::cl::opt<std::string> select_user_tf_ops;
    extern llvm::cl::opt<bool> allow_all_select_tf_ops;
    extern llvm::cl::opt<bool> unfold_batchmatmul;
    extern llvm::cl::opt<bool> unfold_large_splat_constant;
    extern llvm::cl::opt<bool> guarantee_all_funcs_one_use;
    extern llvm::cl::opt<bool> enable_dynamic_update_slice;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

    opt<bool> output_mlir(
        "output-mlir",
        llvm::cl::desc(
            "Output MLIR rather than FlatBuffer for the generated TFLite model"),
        llvm::cl::init(false));
    // NOLINTNEXTLINE
    opt<bool> allow_all_select_tf_ops(
        "allow-all-select-tf-ops",
        llvm::cl::desc("Allow automatic pass through of TF ops (outside the flex "
                       "allowlist) as select Tensorflow ops"),
        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)
  5. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      toco_flags.set_force_select_tf_ops(!emit_builtin_tflite_ops);
      toco_flags.set_enable_select_tf_ops(emit_select_tf_ops);
      toco_flags.set_allow_custom_ops(emit_custom_ops);
      toco_flags.set_allow_all_select_tf_ops(allow_all_select_tf_ops);
      toco_flags.set_enable_dynamic_update_slice(enable_dynamic_update_slice);
      toco_flags.set_post_training_quantize(post_training_quantization);
      toco_flags.set_use_buffer_offset(use_buffer_offset);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top