chore: import upstream snapshot with attribution
cffconvert / validate (push) Has been skipped
License Check / license-check (push) Failing after 2s

This commit is contained in:
wehub-resource-sync
2026-07-13 12:14:16 +08:00
commit 8a852e4b4e
36502 changed files with 9277225 additions and 0 deletions
@@ -0,0 +1,159 @@
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#ifndef TENSORFLOW_COMPILER_MLIR_LITE_COMMON_TFL_PASS_CONFIG_H_
#define TENSORFLOW_COMPILER_MLIR_LITE_COMMON_TFL_PASS_CONFIG_H_
#include <string>
#include <utility>
#include "absl/strings/str_join.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/Support/raw_ostream.h"
#include "tensorflow/compiler/mlir/lite/converter_flags.pb.h"
#include "tensorflow/compiler/mlir/lite/quantization/common/quantization_lib/quantization_config.h"
namespace mlir {
namespace TFL {
// A config that controls which passes get run as part TFLite converter.
struct PassConfig {
explicit PassConfig(QuantizationSpecs specs)
: quant_specs(std::move(specs)) {}
// If `emit_builtin_tflite_ops` is true, TF Lite legalization passes will be
// added, which produces TF Lite ops.
bool emit_builtin_tflite_ops = true;
// If `lower_tensor_list_ops` is true, tensorlist ops will be lowered to basic
// TF ops before legalization to TF Lite dialect.
bool lower_tensor_list_ops = false;
// The allowlist of functions that would be preserved after trimming.
llvm::ArrayRef<std::string> trim_functions_allowlist;
// All information about quantization.
QuantizationSpecs quant_specs;
// If `form_clusters` is true , clusters are formed by grouping consecutive
// ops of the same device, under a `tf_device.launch` op.
bool form_clusters = false;
// If `unfold_batch_matmul` is true, the tf.BatchMatMul is unfolded to a set
// of tfl.fully_connected ops.
bool unfold_batch_matmul = true;
// Whether to outline WhileOp at the end of the pipeline.
bool outline_tf_while = false;
// Whether to do shape inference.
bool shape_inference = true;
// Whether to do TFLite runtime verification.
bool runtime_verification = true;
// Whether to enable TFLite variables or not, this will allow
// mutable variables and produce ReadVariable/AssignVariable ops in TFLite.
bool enable_tflite_variables = false;
// Whether to unfold large splat constant tensors and replace them with
// fill operation.
bool unfold_large_splat_constant = false;
// Whether to run the `GuaranteeAllFuncsOneUsePass` to ensure each function
// has a single use.
bool guarantee_all_funcs_one_use = false;
// Whether to enable the hlo/stablehlo to tf conversion. This also supports
// the case where a saved model contains both TF module and serialized
// StableHLO module.
bool enable_hlo_to_tf_conversion = false;
// Whether to disable the direct hlo/stablehlo to Tensorflow Lite conversion.
//
// This prevents from directly converting from HLO to TFLite without going
// through TF for some of the ops. Some conversions are only supported through
// this path.
bool disable_hlo_to_tfl_conversion = false;
// Whether to enable to use DynamicUpdateSlice op.
bool enable_dynamic_update_slice = false;
// Whether to preserve AssertOp during legalization.
bool preserve_assert_op = false;
// Whether to enable TF->stablehlo passes.
bool enable_stablehlo_conversion = false;
// Whether to convert `tf.TensorList*` to `tfl.custom_op` if they can all
// be supported.
bool legalize_custom_tensor_list_ops = false;
// Whether to convert some tensor types to a lower precision if all values
// within that tensor are within the range of the lower precision. This could
// have side effects e.g. reduced flatbuffer size. Only certain type
// conversions are supported.
bool reduce_type_precision = false;
// Whether to consider this model a quantized model with quantize/dequantize
// ops and to convert kernels to quantized kernels wherever appropriate.
QDQConversionMode qdq_conversion_mode = QDQConversionMode::kQDQNone;
// When set to true, StableHLO Quantizer is run. The full configuration for
// the quantizer is at `ConverterFlags::quantization_config`.
bool enable_stablehlo_quantizer = false;
// Enables the attempt to directly lower composites into tflite ops.
bool enable_composite_direct_lowering = true;
// Specifies the framework of the original model.
tflite::ConverterFlags::ModelOriginFramework model_origin_framework =
tflite::ConverterFlags::UNSET;
// When set to true, convert +Inf/-Inf to MIN/MAX float value and output of
// convert only contains finite values.
bool canonicalizing_inf_as_min_max_float = true;
// When set to true, allows fusion of dynamic shaped broadcast ops. It helps
// fusing implicit broadcasting ops when output shape has dynamic dimensions,
// but it may cause incorrect results when broadcasting ops are introduced by
// explicit broadcasting in the source model.
bool unsafe_fuse_dynamic_shaped_broadcast = false;
// When set to true, enable unsafe single batch rank reduction.
bool unsafe_single_batch_rank_reduction = false;
};
inline llvm::raw_ostream& operator<<(llvm::raw_ostream& os,
const PassConfig& pass_config) {
return os << "emit_builtin_tflite_ops: "
<< pass_config.emit_builtin_tflite_ops
<< "\nlower_tensor_list_ops: " << pass_config.lower_tensor_list_ops
<< "\ntrim_functions_allowlist: "
<< absl::StrJoin(pass_config.trim_functions_allowlist.vec(), ",")
<< "\nform_clusters: " << pass_config.form_clusters
<< "\nunfold_batch_matmul: " << pass_config.unfold_batch_matmul
<< "\noutline_tf_while: " << pass_config.outline_tf_while
<< "\nshape_inference: " << pass_config.shape_inference
<< "\nruntime_verification: " << pass_config.runtime_verification
<< "\nenable_tflite_variables: "
<< pass_config.enable_tflite_variables
<< "\nunfold_large_splat_constant: "
<< pass_config.unfold_large_splat_constant
<< "\nguarantee_all_funcs_one_use: "
<< pass_config.guarantee_all_funcs_one_use
<< "\nenable_hlo_to_tf_conversion: "
<< 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
<< "\nunsafe_fuse_dynamic_shaped_broadcast: "
<< pass_config.unsafe_fuse_dynamic_shaped_broadcast
<< "\nreduce_type_precision: " << pass_config.reduce_type_precision
<< "\nconvert_qdq_format: "
<< GetQDQQuantModeString(pass_config.qdq_conversion_mode)
<< "\nmodel_origin_framework: "
<< tflite::ConverterFlags::ModelOriginFramework_Name(
pass_config.model_origin_framework)
<< "\nunsafe_single_batch_rank_reduction: "
<< pass_config.unsafe_single_batch_rank_reduction << "\n";
}
} // namespace TFL
} // namespace mlir
#endif // TENSORFLOW_COMPILER_MLIR_LITE_COMMON_TFL_PASS_CONFIG_H_