a692616e064e8693f48971f7e2a0c0dda1181b0e
[platform/core/ml/nnfw.git] / tools / nnapi_quickcheck / tests / mul_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/interp/FunctionBuilder.h"
29
30 #include <iostream>
31 #include <cassert>
32
33 #include <chrono>
34 #include <random>
35
36 using namespace tflite;
37 using namespace nnfw::tflite;
38
39 TEST(NNAPI_Quickcheck_mul_2, simple_test)
40 {
41   int verbose = 0;
42   int tolerance = 1;
43
44   nnfw::misc::env::IntAccessor("VERBOSE").access(verbose);
45   nnfw::misc::env::IntAccessor("TOLERANCE").access(tolerance);
46
47   // Set random seed
48   int SEED = std::chrono::system_clock::now().time_since_epoch().count();
49
50   nnfw::misc::env::IntAccessor("SEED").access(SEED);
51
52 #define INT_VALUE(NAME, VALUE) IntVar NAME##_Value(#NAME, VALUE);
53 #include "mul_2.lst"
54 #undef INT_VALUE
55
56   const int32_t LEFT_D1 = LEFT_D1_Value();
57   const int32_t LEFT_D2 = LEFT_D2_Value();
58   const int32_t LEFT_D3 = LEFT_D3_Value();
59
60   const int32_t RIGHT_D1 = RIGHT_D1_Value();
61
62   const int32_t OFM_D1 = LEFT_D1;
63   const int32_t OFM_D2 = LEFT_D2;
64   const int32_t OFM_D3 = LEFT_D3;
65
66   // Initialize random number generator
67   std::minstd_rand random(SEED);
68
69   std::cout << "Configurations:" << std::endl;
70 #define PRINT_NEWLINE()     \
71   {                         \
72     std::cout << std::endl; \
73   }
74 #define PRINT_VALUE(value)                                       \
75   {                                                              \
76     std::cout << "  " << #value << ": " << (value) << std::endl; \
77   }
78   PRINT_VALUE(SEED);
79   PRINT_NEWLINE();
80
81   PRINT_VALUE(LEFT_D1);
82   PRINT_VALUE(LEFT_D2);
83   PRINT_VALUE(LEFT_D3);
84   PRINT_NEWLINE();
85
86   PRINT_VALUE(RIGHT_D1);
87   PRINT_NEWLINE();
88
89   PRINT_VALUE(OFM_D1);
90   PRINT_VALUE(OFM_D2);
91   PRINT_VALUE(OFM_D3);
92 #undef PRINT_VALUE
93 #undef PRINT_NEWLINE
94
95   auto setup = [&](Interpreter &interp) {
96     // Comment from 'context.h'
97     //
98     // Parameters for asymmetric quantization. Quantized values can be converted
99     // back to float using:
100     //    real_value = scale * (quantized_value - zero_point);
101     //
102     // Q: Is this necessary?
103     TfLiteQuantizationParams quantization;
104
105     quantization.scale = 1;
106     quantization.zero_point = 0;
107
108     // On AddTensors(N) call, T/F Lite interpreter creates N tensors whose index is [0 ~ N)
109     interp.AddTensors(3);
110
111     // Configure output
112     interp.SetTensorParametersReadWrite(0, kTfLiteFloat32 /* type */, "output" /* name */,
113                                         {OFM_D1, OFM_D2, OFM_D3} /* dims */, quantization);
114
115     // Configure input(s)
116     interp.SetTensorParametersReadWrite(1, kTfLiteFloat32 /* type */, "left" /* name */,
117                                         {LEFT_D1, LEFT_D2, LEFT_D3} /* dims */, quantization);
118
119     interp.SetTensorParametersReadWrite(2, kTfLiteFloat32 /* type */, "right" /* name */,
120                                         {RIGHT_D1} /* dims */, quantization);
121
122     // Add Convolution Node
123     //
124     // NOTE AddNodeWithParameters take the ownership of param, and deallocate it with free
125     //      So, param should be allocated with malloc
126     auto param = make_alloc<TfLiteAddParams>();
127
128     param->activation = kTfLiteActNone;
129
130     // Run Add and store the result into Tensor #0
131     //  - Read Left from Tensor #1
132     //  - Read Left from Tensor #2,
133     interp.AddNodeWithParameters({1, 2}, {0}, nullptr, 0, reinterpret_cast<void *>(param),
134                                  BuiltinOpResolver().FindOp(BuiltinOperator_MUL, 1));
135
136     interp.SetInputs({1, 2});
137     interp.SetOutputs({0});
138   };
139
140   const nnfw::tflite::FunctionBuilder builder(setup);
141
142   RandomTestParam param;
143
144   param.verbose = verbose;
145   param.tolerance = tolerance;
146
147   int res = RandomTestRunner{SEED, param}.run(builder);
148
149   EXPECT_EQ(res, 0);
150 }