Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for reduce_type_precision (0.21 sec)

  1. tensorflow/compiler/mlir/lite/transforms/reduce_type_precision.cc

    #include "tensorflow/compiler/mlir/lite/utils/convert_type.h"
    #include "tensorflow/compiler/mlir/lite/utils/utils.h"
    
    //===----------------------------------------------------------------------===//
    // The ReduceTypePrecision Pass.
    //
    namespace mlir {
    namespace TFL {
    
    namespace {
    
    #define GEN_PASS_DEF_REDUCETYPEPRECISIONPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

                << 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: "
                << GetQDQQuantModeString(pass_config.qdq_conversion_mode) << "\n";
    }
    
    }  // namespace TFL
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    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;
    extern llvm::cl::opt<std::string> saved_model_tags;
    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

    // NOLINTNEXTLINE
    opt<bool> serialize_stablehlo_ops(
        "serialize-stablehlo-ops",
        llvm::cl::desc("Wether serialize stablehlo ops or not"),
        llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> reduce_type_precision(
        "reduce-type-precision",
        llvm::cl::desc("Convert tensors to a lower precision if all values are "
                       "within the reduced precision range. This could have side "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top