To do this, some static registered translated functions are moved to a seperated c++ file and target. Only the binaries requires these translates functions needs to link them statically. This cl also removes some of the tensorflow/core:lib and tensorflow/core:framework dependence from the flatbuffer_translate_lib target. PiperOrigin-RevId: 302564118 Change-Id: I7882013b05f0bd41332e6469eb7dd82d1ccdc628
44 lines
1.9 KiB
C++
44 lines
1.9 KiB
C++
/* 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_FLATBUFFER_EXPORT_H_
|
|
#define TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_EXPORT_H_
|
|
|
|
#include <string>
|
|
|
|
#include "mlir/IR/Module.h" // from @llvm-project
|
|
#include "tensorflow/compiler/mlir/op_or_arg_name_mapper.h"
|
|
|
|
namespace tflite {
|
|
|
|
// Translates the given MLIR `module` into a FlatBuffer and stores the
|
|
// serialized flatbuffer into the string. This uses OpOrArgLocNameMapper to
|
|
// convert location of the op to name in flatbuffer. Returns true if translation
|
|
// fails, otherwise returns false.
|
|
bool MlirToFlatBufferTranslateFunction(mlir::ModuleOp module,
|
|
std::string* serialized_flatbuffer,
|
|
bool emit_builtin_tflite_ops,
|
|
bool emit_select_tf_ops,
|
|
bool emit_custom_ops);
|
|
|
|
// Same as the above but with a custom op name mapper.
|
|
bool MlirToFlatBufferTranslateFunction(
|
|
mlir::ModuleOp module, std::string* serialized_flatbuffer,
|
|
bool emit_builtin_tflite_ops, bool emit_select_tf_ops, bool emit_custom_ops,
|
|
tensorflow::OpOrArgNameMapper* op_or_arg_name_mapper);
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_COMPILER_MLIR_LITE_FLATBUFFER_EXPORT_H_
|