This change fixes the issue for missing min_runtime_version in flatbuffers exported by MLIR converter. Specifically: *Export `min_runtime_version` in metadata of flatbuffer (fixed-length byte array). *Update all related mlir tests to have metadata. PiperOrigin-RevId: 299894972 Change-Id: Ic79f3ab05b593882362f5baf62493861961acbe3
33 lines
1.3 KiB
C++
33 lines
1.3 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_LITE_TOCO_TFLITE_OP_VERSION_H_
|
|
#define TENSORFLOW_LITE_TOCO_TFLITE_OP_VERSION_H_
|
|
|
|
#include "tensorflow/lite/toco/model.h"
|
|
|
|
namespace toco {
|
|
namespace tflite {
|
|
|
|
// Get the minimum TF Lite runtime required to run a model. Each built-in
|
|
// operator in the model will have its own minimum requirement of a runtime, and
|
|
// the model's minimum requirement of runtime is defined as the maximum of all
|
|
// the built-in operators' minimum runtime.
|
|
std::string GetMinimumRuntimeVersionForModel(const Model& model);
|
|
|
|
} // namespace tflite
|
|
} // namespace toco
|
|
|
|
#endif // TENSORFLOW_LITE_TOCO_TFLITE_OP_VERSION_H_
|