Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for serialize_stablehlo_ops (0.22 sec)

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

                                           const FlatbufferExportOptions& options,
                                           std::string* serialized_flatbuffer,
                                           bool serialize_stablehlo_ops = false);
    }  // namespace tflite
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:51:43 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    extern llvm::cl::opt<bool> post_training_quantization;
    
    // TF to stablehlo pass flags
    extern llvm::cl::opt<bool> enable_stablehlo_conversion;
    
    // Wether serialize stablehlo ops or not
    extern llvm::cl::opt<bool> serialize_stablehlo_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

        const mlir::TFL::PassConfig& pass_config,
        const std::unordered_set<std::string>& saved_model_tags,
        llvm::StringRef saved_model_dir, SavedModelBundle* saved_model_bundle,
        std::string* result, bool serialize_stablehlo_ops = false,
        const quantization::PyFunctionLibrary* quantization_py_function_lib =
            nullptr);
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Convert \"tf.TensorList*\" ops to \"tfl.custom_op\""
                       "if they can all be supported."),
        llvm::cl::init(false));
    
    // 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",
    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