STT-tensorflow/tensorflow/lite/delegates/flex/test_util.h
Terry Heo 7e6061037f FlexDelegate: Provide constant tensors to ShapeInferenceFn
Some op (such as RFFT) requires a constant tensor to calculate the exact
output tensor shape.

PiperOrigin-RevId: 333643286
Change-Id: I826ab115551ad805aeaccb132dd6a2b8f133e578
2020-09-24 18:41:41 -07:00

135 lines
4.8 KiB
C++

/* Copyright 2018 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_DELEGATES_FLEX_TEST_UTIL_H_
#define TENSORFLOW_LITE_DELEGATES_FLEX_TEST_UTIL_H_
#include "tensorflow/c/c_api_internal.h"
#include "tensorflow/lite/kernels/test_util.h"
namespace tflite {
namespace flex {
namespace testing {
enum TfOpType {
kUnpack,
kIdentity,
kAdd,
kMul,
kRfft,
kImag,
// Represents an op that does not exist in TensorFlow.
kNonExistent,
// Represents an valid TensorFlow op where the NodeDef is incompatible.
kIncompatibleNodeDef,
};
// This class creates models with TF and TFLite ops. In order to use this class
// to test the Flex delegate, implement a function that calls
// interpreter->ModifyGraphWithDelegate.
class FlexModelTest : public ::testing::Test {
public:
FlexModelTest() {}
~FlexModelTest() {}
bool Invoke();
// Sets the (typed) tensor's values at the given index.
template <typename T>
void SetTypedValues(int tensor_index, const std::vector<T>& values) {
memcpy(interpreter_->typed_tensor<T>(tensor_index), values.data(),
values.size() * sizeof(T));
}
// Returns the (typed) tensor's values at the given index.
template <typename T>
std::vector<T> GetTypedValues(int tensor_index) {
const TfLiteTensor* t = interpreter_->tensor(tensor_index);
const T* tdata = interpreter_->typed_tensor<T>(tensor_index);
return std::vector<T>(tdata, tdata + t->bytes / sizeof(T));
}
// Sets the tensor's values at the given index.
void SetValues(int tensor_index, const std::vector<float>& values) {
SetTypedValues<float>(tensor_index, values);
}
void SetStringValues(int tensor_index, const std::vector<string>& values);
// Returns the tensor's values at the given index.
std::vector<float> GetValues(int tensor_index) {
return GetTypedValues<float>(tensor_index);
}
std::vector<string> GetStringValues(int tensor_index) const;
// Sets the tensor's shape at the given index.
void SetShape(int tensor_index, const std::vector<int>& values);
// Returns the tensor's shape at the given index.
std::vector<int> GetShape(int tensor_index);
// Returns the tensor's type at the given index.
TfLiteType GetType(int tensor_index);
// Returns if the tensor at the given index is dynamic.
bool IsDynamicTensor(int tensor_index);
const TestErrorReporter& error_reporter() const { return error_reporter_; }
// Adds `num_tensor` tensors to the model. `inputs` contains the indices of
// the input tensors and `outputs` contains the indices of the output
// tensors. All tensors are set to have `type` and `dims`.
void AddTensors(int num_tensors, const std::vector<int>& inputs,
const std::vector<int>& outputs, TfLiteType type,
const std::vector<int>& dims);
// Set a constant tensor of the given shape, type and buffer at the given
// index.
void SetConstTensor(int tensor_index, const std::vector<int>& values,
TfLiteType type, const char* buffer, size_t bytes);
// Adds a TFLite Mul op. `inputs` contains the indices of the input tensors
// and `outputs` contains the indices of the output tensors.
void AddTfLiteMulOp(const std::vector<int>& inputs,
const std::vector<int>& outputs);
// Adds a TensorFlow op. `inputs` contains the indices of the
// input tensors and `outputs` contains the indices of the output tensors.
// This function is limited to the set of ops defined in TfOpType.
void AddTfOp(TfOpType op, const std::vector<int>& inputs,
const std::vector<int>& outputs);
protected:
std::unique_ptr<Interpreter> interpreter_;
TestErrorReporter error_reporter_;
std::vector<int> tf_ops_;
private:
// Helper method to add a TensorFlow op. tflite_names needs to start with
// "Flex" in order to work with the Flex delegate.
void AddTfOp(const char* tflite_name, const string& tf_name,
const string& nodedef_str, const std::vector<int>& inputs,
const std::vector<int>& outputs);
std::vector<std::vector<uint8_t>> flexbuffers_;
int next_op_index_ = 0;
};
} // namespace testing
} // namespace flex
} // namespace tflite
#endif // TENSORFLOW_LITE_DELEGATES_FLEX_TEST_UTIL_H_