STT-tensorflow/tensorflow/lite/util_test.cc
Chao Mei 3492a0f355 Improve GPU delegate graph partitioning logic
1. Allow offloading computation starting from intermediate nodes of a model in GPU delegate. And when there are multiple partitions, only offload the first largest partition.

2. Unify GetOpsToReplace and GetOpsToReplaceFromGraphWithDequantize into the same function.

RELNOTES: [TFLite] Allow GPU acceleration starting with internal nodes
PiperOrigin-RevId: 300889638
Change-Id: I09da4043532a95a9efb4f167c8af4243c3889a45
2020-03-13 23:28:48 -07:00

127 lines
3.9 KiB
C++

/* Copyright 2017 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 "tensorflow/lite/util.h"
#include <vector>
#include <gmock/gmock.h>
#include <gtest/gtest.h>
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/schema/schema_generated.h"
namespace tflite {
namespace {
TEST(ConvertVectorToTfLiteIntArray, TestWithVector) {
std::vector<int> input = {1, 2};
TfLiteIntArray* output = ConvertVectorToTfLiteIntArray(input);
ASSERT_NE(output, nullptr);
EXPECT_EQ(output->size, 2);
EXPECT_EQ(output->data[0], 1);
EXPECT_EQ(output->data[1], 2);
TfLiteIntArrayFree(output);
}
TEST(ConvertVectorToTfLiteIntArray, TestWithEmptyVector) {
std::vector<int> input;
TfLiteIntArray* output = ConvertVectorToTfLiteIntArray(input);
ASSERT_NE(output, nullptr);
EXPECT_EQ(output->size, 0);
TfLiteIntArrayFree(output);
}
TEST(UtilTest, IsFlexOp) {
EXPECT_TRUE(IsFlexOp("Flex"));
EXPECT_TRUE(IsFlexOp("FlexOp"));
EXPECT_FALSE(IsFlexOp("flex"));
EXPECT_FALSE(IsFlexOp("Fle"));
EXPECT_FALSE(IsFlexOp("OpFlex"));
EXPECT_FALSE(IsFlexOp(nullptr));
EXPECT_FALSE(IsFlexOp(""));
}
TEST(EqualArrayAndTfLiteIntArray, TestWithTFLiteArrayEmpty) {
int input[] = {1, 2, 3, 4};
EXPECT_FALSE(EqualArrayAndTfLiteIntArray(nullptr, 4, input));
}
TEST(EqualArrayAndTfLiteIntArray, TestWithTFLiteArrayWrongSize) {
int input[] = {1, 2, 3, 4};
TfLiteIntArray* output = ConvertArrayToTfLiteIntArray(4, input);
EXPECT_FALSE(EqualArrayAndTfLiteIntArray(output, 3, input));
free(output);
}
TEST(EqualArrayAndTfLiteIntArray, TestMismatch) {
int input[] = {1, 2, 3, 4};
TfLiteIntArray* output = ConvertVectorToTfLiteIntArray({1, 2, 2, 4});
EXPECT_FALSE(EqualArrayAndTfLiteIntArray(output, 4, input));
free(output);
}
TEST(EqualArrayAndTfLiteIntArray, TestMatch) {
int input[] = {1, 2, 3, 4};
TfLiteIntArray* output = ConvertArrayToTfLiteIntArray(4, input);
EXPECT_TRUE(EqualArrayAndTfLiteIntArray(output, 4, input));
free(output);
}
TEST(CombineHashes, TestHashOutputsEquals) {
size_t output1 = CombineHashes({1, 2, 3, 4});
size_t output2 = CombineHashes({1, 2, 3, 4});
EXPECT_EQ(output1, output2);
}
TEST(CombineHashes, TestHashOutputsDifferent) {
size_t output1 = CombineHashes({1, 2, 3, 4});
size_t output2 = CombineHashes({1, 2, 2, 4});
EXPECT_NE(output1, output2);
}
TEST(GetOpNameByRegistration, ValidBuiltinCode) {
TfLiteRegistration registration;
registration.builtin_code = tflite::BuiltinOperator_ADD;
const auto op_name = GetOpNameByRegistration(registration);
EXPECT_EQ("ADD", op_name);
}
TEST(GetOpNameByRegistration, InvalidBuiltinCode) {
TfLiteRegistration registration;
registration.builtin_code = -1;
const auto op_name = GetOpNameByRegistration(registration);
EXPECT_EQ("", op_name);
}
TEST(GetOpNameByRegistration, CustomName) {
TfLiteRegistration registration;
registration.builtin_code = tflite::BuiltinOperator_CUSTOM;
registration.custom_name = "TestOp";
auto op_name = GetOpNameByRegistration(registration);
EXPECT_EQ("CUSTOM TestOp", op_name);
registration.builtin_code = tflite::BuiltinOperator_DELEGATE;
registration.custom_name = "TestDelegate";
op_name = GetOpNameByRegistration(registration);
EXPECT_EQ("DELEGATE TestDelegate", op_name);
}
} // namespace
} // namespace tflite
int main(int argc, char** argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}