120 lines
3.9 KiB
C++
120 lines
3.9 KiB
C++
/* Copyright 2020 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/tools/utils.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gtest/gtest.h>
|
|
#include "absl/types/span.h"
|
|
#include "tensorflow/lite/c/common.h"
|
|
#include "tensorflow/lite/types/half.h"
|
|
|
|
namespace tflite::tools {
|
|
namespace {
|
|
using ::testing::ElementsAre;
|
|
using ::testing::FloatEq;
|
|
using ::testing::SizeIs;
|
|
|
|
// Helper function to test TfLiteTensorToFloat32Array.
|
|
template <typename T>
|
|
void TestTfLiteTensorToFloat32Array(TfLiteType type) {
|
|
T data[] = {1, 2, 3, 4};
|
|
TfLiteTensor tensor;
|
|
tensor.data.data = data;
|
|
tensor.type = type;
|
|
// Create an int array with 1 dimension and the array size is 4.
|
|
tensor.dims = TfLiteIntArrayCreate(1);
|
|
tensor.dims->data[0] = 4;
|
|
std::vector<float> result(4, 0.0);
|
|
const auto status =
|
|
utils::TfLiteTensorToFloat32Array(tensor, absl::MakeSpan(result));
|
|
TfLiteIntArrayFree(tensor.dims);
|
|
ASSERT_EQ(status, kTfLiteOk);
|
|
ASSERT_EQ(result.size(), 4);
|
|
for (int i = 0; i < 4; ++i) {
|
|
EXPECT_THAT(result[i], FloatEq(static_cast<float>(data[i])));
|
|
}
|
|
}
|
|
|
|
// Helper function to test TfLiteTensorToFloat32Array.
|
|
template <typename T>
|
|
void TestTfLiteTensorToInt64Array(TfLiteType type) {
|
|
T data[] = {1, 2, 3, 4};
|
|
TfLiteTensor tensor;
|
|
tensor.data.data = data;
|
|
tensor.type = type;
|
|
// Create an int array with 1 dimension and the array size is 4.
|
|
tensor.dims = TfLiteIntArrayCreate(1);
|
|
tensor.dims->data[0] = 4;
|
|
std::vector<int64_t> result(4, 0);
|
|
const auto status =
|
|
utils::TfLiteTensorToInt64Array(tensor, absl::MakeSpan(result));
|
|
TfLiteIntArrayFree(tensor.dims);
|
|
ASSERT_EQ(status, kTfLiteOk);
|
|
ASSERT_EQ(result.size(), 4);
|
|
for (int i = 0; i < 4; ++i) {
|
|
EXPECT_EQ(result[i], static_cast<int64_t>(data[i]));
|
|
}
|
|
}
|
|
|
|
// Tests TfLiteTensorToFloat32Array for supported TfLiteTypes.
|
|
TEST(Utils, TfLiteTensorToFloat32Array) {
|
|
TestTfLiteTensorToFloat32Array<float>(kTfLiteFloat32);
|
|
TestTfLiteTensorToFloat32Array<double>(kTfLiteFloat64);
|
|
}
|
|
|
|
// Tests TfLiteTensorToFloat32Array for kTfLiteFloat16.
|
|
TEST(Utils, TfLiteTensorToFloat32ArrayFp16) {
|
|
half data[] = {
|
|
half(1.0f),
|
|
half(2.0f),
|
|
half(3.0f),
|
|
half(4.0f),
|
|
};
|
|
TfLiteTensor tensor;
|
|
tensor.data.data = data;
|
|
tensor.type = kTfLiteFloat16;
|
|
// Create an int array with 1 dimension and the array size is 4.
|
|
tensor.dims = TfLiteIntArrayCreate(1);
|
|
tensor.dims->data[0] = 4;
|
|
std::vector<float> result(4, 0.0);
|
|
const TfLiteStatus status =
|
|
utils::TfLiteTensorToFloat32Array(tensor, absl::MakeSpan(result));
|
|
TfLiteIntArrayFree(tensor.dims);
|
|
ASSERT_EQ(status, kTfLiteOk);
|
|
ASSERT_THAT(result, SizeIs(4));
|
|
EXPECT_THAT(result, ElementsAre(FloatEq(1.0f), FloatEq(2.0f), FloatEq(3.0f),
|
|
FloatEq(4.0f)));
|
|
}
|
|
|
|
TEST(Utils, TfLiteTensorToInt64Array) {
|
|
TestTfLiteTensorToInt64Array<int8_t>(kTfLiteInt8);
|
|
TestTfLiteTensorToInt64Array<uint8_t>(kTfLiteUInt8);
|
|
TestTfLiteTensorToInt64Array<int16_t>(kTfLiteInt16);
|
|
TestTfLiteTensorToInt64Array<uint16_t>(kTfLiteUInt16);
|
|
TestTfLiteTensorToInt64Array<int>(kTfLiteInt32);
|
|
TestTfLiteTensorToInt64Array<uint32_t>(kTfLiteUInt32);
|
|
TestTfLiteTensorToInt64Array<int64_t>(kTfLiteInt64);
|
|
TestTfLiteTensorToInt64Array<uint64_t>(kTfLiteUInt64);
|
|
}
|
|
|
|
} // namespace
|
|
} // namespace tflite::tools
|