df4efa4fffa079d597001876902b48475f0452bf
[platform/core/ml/nnfw.git] / tools / nnapi_quickcheck / tests / div_2.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "gtest/gtest.h"
18
19 #include "tflite/ext/kernels/register.h"
20 #include "tensorflow/lite/model.h"
21 #include "tensorflow/lite/builtin_op_data.h"
22
23 #include "env.h"
24 #include "memory.h"
25 #include "misc/environment.h"
26
27 #include "tflite/Diff.h"
28 #include "tflite/Quantization.h"
29 #include "tflite/interp/FunctionBuilder.h"
30
31 #include <iostream>
32 #include <cassert>
33
34 #include <chrono>
35 #include <random>
36
37 using namespace tflite;
38 using namespace nnfw::tflite;
39
40 TEST(NNAPI_Quickcheck_div_2, simple_test)
41 {
42   int verbose = 0;
43   int tolerance = 1;
44
45   nnfw::misc::env::IntAccessor("VERBOSE").access(verbose);
46   nnfw::misc::env::IntAccessor("TOLERANCE").access(tolerance);
47
48   // Set random seed
49   int SEED = std::chrono::system_clock::now().time_since_epoch().count();
50
51   nnfw::misc::env::IntAccessor("SEED").access(SEED);
52
53 #define INT_VALUE(NAME, VALUE) IntVar NAME##_Value(#NAME, VALUE);
54 #include "div_2.lst"
55 #undef INT_VALUE
56
57   const int32_t LEFT_N = LEFT_N_Value();
58   const int32_t LEFT_C = LEFT_C_Value();
59   const int32_t LEFT_H = LEFT_H_Value();
60   const int32_t LEFT_W = LEFT_W_Value();
61
62   const int32_t RIGHT = RIGHT_Value();
63
64   const int32_t OFM_N = LEFT_N;
65   const int32_t OFM_C = LEFT_C;
66   const int32_t OFM_H = LEFT_H;
67   const int32_t OFM_W = LEFT_W;
68
69   // Initialize random number generator
70   std::minstd_rand random(SEED);
71
72   std::cout << "Configurations:" << std::endl;
73 #define PRINT_NEWLINE()     \
74   {                         \
75     std::cout << std::endl; \
76   }
77 #define PRINT_VALUE(value)                                       \
78   {                                                              \
79     std::cout << "  " << #value << ": " << (value) << std::endl; \
80   }
81   PRINT_VALUE(SEED);
82   PRINT_NEWLINE();
83
84   PRINT_VALUE(LEFT_N);
85   PRINT_VALUE(LEFT_C);
86   PRINT_VALUE(LEFT_H);
87   PRINT_VALUE(LEFT_W);
88   PRINT_NEWLINE();
89
90   PRINT_VALUE(RIGHT);
91   PRINT_NEWLINE();
92
93   PRINT_VALUE(OFM_N);
94   PRINT_VALUE(OFM_C);
95   PRINT_VALUE(OFM_H);
96   PRINT_VALUE(OFM_W);
97 #undef PRINT_VALUE
98 #undef PRINT_NEWLINE
99
100   auto setup = [&](Interpreter &interp) {
101     // Comment from 'context.h'
102     //
103     // Parameters for asymmetric quantization. Quantized values can be converted
104     // back to float using:
105     //    real_value = scale * (quantized_value - zero_point);
106     //
107     // Q: Is this necessary?
108     TfLiteQuantizationParams quantization = make_default_quantization();
109
110     // On AddTensors(N) call, T/F Lite interpreter creates N tensors whose index is [0 ~ N)
111     interp.AddTensors(3);
112
113     // Configure output
114     interp.SetTensorParametersReadWrite(0, kTfLiteFloat32 /* type */, "output" /* name */,
115                                         {OFM_N, OFM_H, OFM_W, OFM_C} /* dims */, quantization);
116
117     // Configure input(s)
118     interp.SetTensorParametersReadWrite(1, kTfLiteFloat32 /* type */, "left" /* name */,
119                                         {LEFT_N, LEFT_H, LEFT_W, LEFT_C} /* dims */, quantization);
120
121     interp.SetTensorParametersReadWrite(2, kTfLiteFloat32 /* type */, "right" /* name */,
122                                         {RIGHT} /* dims */, quantization);
123
124     // Add Division Node
125     //
126     // NOTE AddNodeWithParameters take the ownership of param, and deallocate it with free
127     //      So, param should be allocated with malloc
128     auto param = make_alloc<TfLiteAddParams>();
129
130     param->activation = kTfLiteActNone;
131
132     // Run Div and store the result into Tensor #0
133     //  - Read Left from Tensor #1
134     //  - Read Right from Tensor #2,
135     interp.AddNodeWithParameters({1, 2}, {0}, nullptr, 0, reinterpret_cast<void *>(param),
136                                  BuiltinOpResolver().FindOp(BuiltinOperator_DIV, 1));
137
138     interp.SetInputs({1, 2});
139     interp.SetOutputs({0});
140   };
141
142   const nnfw::tflite::FunctionBuilder builder(setup);
143
144   RandomTestParam param;
145
146   param.verbose = verbose;
147   param.tolerance = tolerance;
148
149   int res = RandomTestRunner{SEED, param}.run(builder);
150
151   EXPECT_EQ(res, 0);
152 }