97 lines
3.4 KiB
C++
97 lines
3.4 KiB
C++
#ifndef TENSORFLOW_LITE_INTERPRETER_TEST_UTIL_H_
|
|
#define TENSORFLOW_LITE_INTERPRETER_TEST_UTIL_H_
|
|
|
|
/* Copyright 2021 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.
|
|
==============================================================================*/
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <gtest/gtest.h>
|
|
#include "tensorflow/lite/core/interpreter.h"
|
|
#include "tensorflow/lite/internal/signature_def.h"
|
|
#include "tensorflow/lite/kernels/internal/compatibility.h"
|
|
#include "tensorflow/lite/string_util.h"
|
|
|
|
namespace tflite {
|
|
|
|
// Test helper for accessing private Interpreter members and methods.
|
|
class InterpreterTest : public ::testing::Test {
|
|
public:
|
|
InterpreterTest() : interpreter_(new Interpreter) {}
|
|
|
|
template <typename Delegate>
|
|
static TfLiteStatus ModifyGraphWithDelegate(
|
|
Interpreter* interpreter, std::unique_ptr<Delegate> delegate) {
|
|
return interpreter->ModifyGraphWithDelegate(std::move(delegate));
|
|
}
|
|
|
|
protected:
|
|
TfLiteContext* GetInterpreterContext() { return interpreter_->context_; }
|
|
|
|
Interpreter::TfLiteDelegateCreators* mutable_lazy_delegate_providers() {
|
|
return &interpreter_->lazy_delegate_providers_;
|
|
}
|
|
|
|
bool HasDelegates() { return interpreter_->HasDelegates(); }
|
|
|
|
bool IsFullyDelegated() const { return interpreter_->IsFullyDelegated(); }
|
|
|
|
TfLiteStatus ApplyLazyDelegateProviders() {
|
|
return interpreter_->ApplyLazyDelegateProviders();
|
|
}
|
|
|
|
void BuildSignature(const std::string& signature_key,
|
|
const std::map<std::string, uint32_t>& inputs,
|
|
const std::map<std::string, uint32_t>& outputs) {
|
|
BuildSignature(interpreter_.get(), signature_key, inputs, outputs);
|
|
}
|
|
|
|
// TODO(b/271296489): Refactor InterpreterTest for C API (i.e.
|
|
// TfLiteInterpreter). Currently this method is added to manipulate the
|
|
// interpreter instance within TfLiteInterpreter.
|
|
static void BuildSignature(Interpreter* interpreter,
|
|
const std::string& signature_key,
|
|
const std::map<std::string, uint32_t>& inputs,
|
|
const std::map<std::string, uint32_t>& outputs,
|
|
int subgraph_index = 0) {
|
|
internal::SignatureDef signature;
|
|
signature.inputs = inputs;
|
|
signature.outputs = outputs;
|
|
signature.signature_key = signature_key;
|
|
signature.subgraph_index = subgraph_index;
|
|
interpreter->SetSignatureDef({signature});
|
|
}
|
|
|
|
TfLiteStatus SetExecutionPlan(const std::vector<int>& new_plan) {
|
|
return interpreter_->SetExecutionPlan(new_plan);
|
|
}
|
|
|
|
void AddSubgraphs(int subgraphs_to_add,
|
|
int* first_new_subgraph_index = nullptr) {
|
|
interpreter_->AddSubgraphs(subgraphs_to_add, first_new_subgraph_index);
|
|
}
|
|
|
|
std::unique_ptr<Interpreter> interpreter_;
|
|
};
|
|
|
|
} // namespace tflite
|
|
|
|
#endif // TENSORFLOW_LITE_INTERPRETER_TEST_UTIL_H_
|