STT-tensorflow/tf/tensorflow/lite/micro/kernels/tanh_test.cc
Mihai Maruseac 06923bb4fe initial
2021-01-21 09:06:36 -08:00

227 lines
10 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/c/builtin_op_data.h"
#include "tensorflow/lite/c/common.h"
#include "tensorflow/lite/micro/kernels/kernel_runner.h"
#include "tensorflow/lite/micro/test_helpers.h"
#include "tensorflow/lite/micro/testing/micro_test.h"
namespace tflite {
namespace testing {
namespace {
constexpr int tanh_vec_size = 90;
const float tanh_input_vec_fp[tanh_vec_size] = {
-8.0000000000, -7.8181818182, -7.6363636364, -7.4545454545, -7.2727272727,
-7.0909090909, -6.9090909091, -6.7272727273, -6.5454545455, -6.3636363636,
-6.1818181818, -6.0000000000, -5.8181818182, -5.6363636364, -5.4545454545,
-5.2727272727, -5.0909090909, -4.9090909091, -4.7272727273, -4.5454545455,
-4.3636363636, -4.1818181818, -4.0000000000, -3.8181818182, -3.6363636364,
-3.4545454545, -3.2727272727, -3.0909090909, -2.9090909091, -2.7272727273,
-2.5454545455, -2.3636363636, -2.1818181818, -2.0000000000, -1.8181818182,
-1.6363636364, -1.4545454545, -1.2727272727, -1.0909090909, -0.9090909091,
-0.7272727273, -0.5454545455, -0.3636363636, -0.1818181818, 0.0000000000,
0.1818181818, 0.3636363636, 0.5454545455, 0.7272727273, 0.9090909091,
1.0909090909, 1.2727272727, 1.4545454545, 1.6363636364, 1.8181818182,
2.0000000000, 2.1818181818, 2.3636363636, 2.5454545455, 2.7272727273,
2.9090909091, 3.0909090909, 3.2727272727, 3.4545454545, 3.6363636364,
3.8181818182, 4.0000000000, 4.1818181818, 4.3636363636, 4.5454545455,
4.7272727273, 4.9090909091, 5.0909090909, 5.2727272727, 5.4545454545,
5.6363636364, 5.8181818182, 6.0000000000, 6.1818181818, 6.3636363636,
6.5454545455, 6.7272727273, 6.9090909091, 7.0909090909, 7.2727272727,
7.4545454545, 7.6363636364, 7.8181818182, 8.0000000000};
const float tanh_output_vec_fp[tanh_vec_size] = {
-0.9999997749, -0.9999996762, -0.9999995342, -0.9999993300, -0.9999990361,
-0.9999986134, -0.9999980053, -0.9999971306, -0.9999958722, -0.9999940619,
-0.9999914578, -0.9999877117, -0.9999823226, -0.9999745703, -0.9999634183,
-0.9999473758, -0.9999242982, -0.9998911009, -0.9998433469, -0.9997746542,
-0.9996758446, -0.9995337191, -0.9993292997, -0.9990353053, -0.9986125310,
-0.9980046622, -0.9971308601, -0.9958751909, -0.9940716137, -0.9914827859,
-0.9877703933, -0.9824541388, -0.9748561217, -0.9640275801, -0.9486568273,
-0.9269625051, -0.8965880154, -0.8545351057, -0.7972097087, -0.7206956332,
-0.6213939966, -0.4971057414, -0.3484130125, -0.1798408185, 0.0000000000,
0.1798408185, 0.3484130125, 0.4971057414, 0.6213939966, 0.7206956332,
0.7972097087, 0.8545351057, 0.8965880154, 0.9269625051, 0.9486568273,
0.9640275801, 0.9748561217, 0.9824541388, 0.9877703933, 0.9914827859,
0.9940716137, 0.9958751909, 0.9971308601, 0.9980046622, 0.9986125310,
0.9990353053, 0.9993292997, 0.9995337191, 0.9996758446, 0.9997746542,
0.9998433469, 0.9998911009, 0.9999242982, 0.9999473758, 0.9999634183,
0.9999745703, 0.9999823226, 0.9999877117, 0.9999914578, 0.9999940619,
0.9999958722, 0.9999971306, 0.9999980053, 0.9999986134, 0.9999990361,
0.9999993300, 0.9999995342, 0.9999996762, 0.9999997749};
void TestTanhFloat(const int input_dims_data[], const float* input_data,
const float* expected_output_data,
const int output_dims_data[], float* output_data,
const float tolerance) {
TfLiteIntArray* input_dims = IntArrayFromInts(input_dims_data);
TfLiteIntArray* output_dims = IntArrayFromInts(output_dims_data);
const int output_elements_count = ElementCount(*output_dims);
constexpr int inputs_size = 1;
constexpr int outputs_size = 1;
constexpr int tensors_size = inputs_size + outputs_size;
TfLiteTensor tensors[tensors_size] = {
CreateTensor(input_data, input_dims),
CreateTensor(output_data, output_dims),
};
int inputs_array_data[] = {1, 0};
TfLiteIntArray* inputs_array = IntArrayFromInts(inputs_array_data);
int outputs_array_data[] = {1, 1};
TfLiteIntArray* outputs_array = IntArrayFromInts(outputs_array_data);
const TfLiteRegistration registration = tflite::ops::micro::Register_TANH();
micro::KernelRunner runner(registration, tensors, tensors_size, inputs_array,
outputs_array, /*builtin_data=*/nullptr,
micro_test::reporter);
TF_LITE_MICRO_EXPECT_EQ(kTfLiteOk, runner.InitAndPrepare());
TF_LITE_MICRO_EXPECT_EQ(kTfLiteOk, runner.Invoke());
for (int i = 0; i < output_elements_count; ++i) {
TF_LITE_MICRO_EXPECT_NEAR(expected_output_data[i], output_data[i],
tolerance);
}
}
template <typename T>
void TestTanhQuantized(const int input_dims_data[], const float* input_data,
T* input_quantized, float input_scale,
int input_zero_point, const float* expected_output_data,
T* expected_output_quantized,
const int output_dims_data[], float output_scale,
int output_zero_point, T* output_quantized,
const int tolerance) {
static_assert(sizeof(T) == 1, "Valid only for 8bit data types");
TfLiteIntArray* input_dims = IntArrayFromInts(input_dims_data);
TfLiteIntArray* output_dims = IntArrayFromInts(output_dims_data);
const int output_elements_count = ElementCount(*output_dims);
tflite::Quantize(expected_output_data, expected_output_quantized,
output_elements_count, output_scale, output_zero_point);
constexpr int inputs_size = 1;
constexpr int outputs_size = 1;
constexpr int tensors_size = inputs_size + outputs_size;
TfLiteTensor tensors[tensors_size] = {
CreateQuantizedTensor(input_data, input_quantized, input_dims,
input_scale, input_zero_point),
CreateQuantizedTensor(output_quantized, output_dims, output_scale,
output_zero_point)};
int inputs_array_data[] = {1, 0};
TfLiteIntArray* inputs_array = IntArrayFromInts(inputs_array_data);
int outputs_array_data[] = {1, 1};
TfLiteIntArray* outputs_array = IntArrayFromInts(outputs_array_data);
const TfLiteRegistration registration = tflite::ops::micro::Register_TANH();
micro::KernelRunner runner(registration, tensors, tensors_size, inputs_array,
outputs_array, /*builtin_data=*/nullptr,
micro_test::reporter);
TF_LITE_MICRO_EXPECT_EQ(kTfLiteOk, runner.InitAndPrepare());
TF_LITE_MICRO_EXPECT_EQ(kTfLiteOk, runner.Invoke());
for (int i = 0; i < output_elements_count; ++i) {
TF_LITE_MICRO_EXPECT_NEAR(expected_output_quantized[i], output_quantized[i],
tolerance);
}
}
} // namespace
} // namespace testing
} // namespace tflite
TF_LITE_MICRO_TESTS_BEGIN
TF_LITE_MICRO_TEST(SimpleTestTanhFloat) {
using tflite::testing::tanh_input_vec_fp;
using tflite::testing::tanh_output_vec_fp;
using tflite::testing::tanh_vec_size;
const int input_shape[] = {2, 1, tanh_vec_size};
const int output_shape[] = {2, 1, tanh_vec_size};
float output_data[tanh_vec_size];
tflite::testing::TestTanhFloat( //
input_shape, // Input shape.
tanh_input_vec_fp, // Input data
tanh_output_vec_fp, // Expected results.
output_shape, // Output shape.
output_data, 1e-7 /* tolerance */);
}
TF_LITE_MICRO_TEST(SimpleTestTanhUInt8) {
using tflite::testing::tanh_input_vec_fp;
using tflite::testing::tanh_output_vec_fp;
using tflite::testing::tanh_vec_size;
const float input_scale = 16 / 256.f;
const int input_zero_point = 128;
const float output_scale = 1.99999955f / 256.f;
const int output_zero_point = 128;
const int input_shape[] = {2, 1, tanh_vec_size};
const int output_shape[] = {2, 1, tanh_vec_size};
uint8_t input_quantized[tanh_vec_size];
uint8_t expected_output_quantized[tanh_vec_size];
uint8_t output_quantized[tanh_vec_size];
tflite::testing::TestTanhQuantized<uint8_t>( //
input_shape, // Input shape.
tanh_input_vec_fp, input_quantized, // Input data.
input_scale, input_zero_point, // Input quantized info.
tanh_output_vec_fp, expected_output_quantized, // Expected results.
output_shape, // Output shape.
output_scale, output_zero_point, // Output quantized info.
output_quantized, // Operation results
2 // Tolerance.
);
}
TF_LITE_MICRO_TEST(SimpleTestTanhUInt8) {
using tflite::testing::tanh_input_vec_fp;
using tflite::testing::tanh_output_vec_fp;
using tflite::testing::tanh_vec_size;
const float input_scale = 16 / 256.f;
const int input_zero_point = 0;
const float output_scale = 1.99999955f / 256.f;
const int output_zero_point = 0;
const int input_shape[] = {2, 1, tanh_vec_size};
const int output_shape[] = {2, 1, tanh_vec_size};
int8_t input_quantized[tanh_vec_size];
int8_t expected_output_quantized[tanh_vec_size];
int8_t output_quantized[tanh_vec_size];
tflite::testing::TestTanhQuantized<int8_t>( //
input_shape, // Input shape.
tanh_input_vec_fp, input_quantized, // Input data.
input_scale, input_zero_point, // Input quantized info.
tanh_output_vec_fp, expected_output_quantized, // Expected results.
output_shape, // Output shape.
output_scale, output_zero_point, // Output quantized info.
output_quantized, // Operation results
2 // Tolerance.
);
}
TF_LITE_MICRO_TESTS_END