blob: d289e8e57ed2e26b33d815013e78704e3b8ed273 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_TEST_REFERENCE_REFERENCE_CPP_H__
25#define __ARM_COMPUTE_TEST_REFERENCE_REFERENCE_CPP_H__
26
Isabella Gottardib797fa22017-06-23 15:02:11 +010027#include "RawTensor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "Reference.h"
29
Isabella Gottardib797fa22017-06-23 15:02:11 +010030#include <map>
Georgios Pinitasac4e8732017-07-05 17:02:25 +010031#include <memory>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032#include <ostream>
Georgios Pinitasd4f8c272017-06-30 16:16:19 +010033#include <vector>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
35namespace arm_compute
36{
37class Tensor;
38
39namespace test
40{
41namespace validation
42{
43/** C++ reference implementation. */
44class ReferenceCPP final : public Reference
45{
46public:
Giorgio Arena50f9fd72017-06-19 17:05:30 +010047 /** Function to compute reference sobel 3x3.
48 *
49 * @param[in] src Input tensor.
50 * @param[in] dst_x Result tensor along x axis
51 * @param[in] dst_y Result tensor along y axis
52 * @param[in] border_mode Border mode to use for input tensor
53 * @param[in] constant_border_value Constant value to use if @p border_mode is constant
54 *
55 */
56 static void sobel_3x3(RawTensor &src, RawTensor &dst_x, RawTensor &dst_y, BorderMode border_mode, uint8_t constant_border_value);
57 /** Function to compute reference sobel 5x5.
58 *
59 * @param[in] src Input tensor.
60 * @param[in] dst_x Result tensor along x axis
61 * @param[in] dst_y Result tensor along y axis
62 * @param[in] border_mode Border mode to use for input tensor
63 * @param[in] constant_border_value Constant value to use if @p border_mode is constant
64 *
65 */
66 static void sobel_5x5(RawTensor &src, RawTensor &dst_x, RawTensor &dst_y, BorderMode border_mode, uint8_t constant_border_value);
Giorgio Arena2ca209e2017-06-13 15:49:37 +010067 /** Function to compute the min max values and their location in a tensor.
68 *
69 * @param[in] src Input tensor.
70 * @param[out] min Minimum value of the tensor.
71 * @param[out] max Maximum value of the tensor
72 * @param[out] min_loc Array with locations of minimum values
73 * @param[out] max_loc Array with locations of maximum values
74 * @param[out] min_count Number of minimum values found
75 * @param[out] max_count Number of maximum values found
76 */
Michele Di Giorgioef4b4ae2017-07-04 17:19:43 +010077 static void min_max_location(const RawTensor &src, void *min, void *max, IArray<Coordinates2D> &min_loc, IArray<Coordinates2D> &max_loc, uint32_t &min_count, uint32_t &max_count);
Giorgio Arenaf7959862017-06-13 15:19:51 +010078 /** Function to compute the mean and standard deviation of a tensor.
79 *
80 * @param[in] src Input tensor.
81 * @param[out] mean Mean of the tensor.
82 * @param[out] std_dev Standard deviation of the tensor
83 */
84 static void mean_and_standard_deviation(const RawTensor &src, float &mean, float &std_dev);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085 /** Function to compute the integral image of a tensor.
86 *
87 * @param[in] src Input tensor.
88 * @param[out] dst Result tensor.
89 */
90 static void integral_image(const RawTensor &src, RawTensor &dst);
91 /** Function to compute the absolute difference between two tensors.
92 *
93 * @param[in] src1 First tensor.
94 * @param[in] src2 Second tensor.
95 * @param[out] dst Result tensor.
96 */
97 static void absolute_difference(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
98 /** Function to accumulate an input tensor into an output tensor.
99 *
100 * @param[in] src Input tensor.
101 * @param[in, out] dst Result tensor.
102 */
103 static void accumulate(const RawTensor &src, RawTensor &dst);
104 /** Function to accumulate a squared value from an input tensor to an output tensor.
105 *
106 * @param[in] src Input tensor.
107 * @param[in, out] dst Result tensor.
108 * @param[in] shift A uint32_t value within the range of [0, 15]
109 */
110 static void accumulate_squared(const RawTensor &src, RawTensor &dst, uint32_t shift);
111 /** Function to accumulate a weighted value from an input tensor to an output tensor.
112 *
113 * @param[in] src Input tensor.
114 * @param[in, out] dst Result tensor.
115 * @param[in] alpha A float value within the range of [0, 1]
116 */
117 static void accumulate_weighted(const RawTensor &src, RawTensor &dst, float alpha);
118 /** Arithmetic addition of @p src1 and @p src2
119 *
120 * @param[in] src1 First tensor.
121 * @param[in] src2 Second tensor.
122 * @param[out] dst Result tensor.
123 * @param[in] convert_policy Overflow policy.
124 */
125 static void arithmetic_addition(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, ConvertPolicy convert_policy);
126 /** Arithmetic subtraction of @p src2 from @p src1
127 *
128 * @param[in] src1 First tensor.
129 * @param[in] src2 Second tensor.
130 * @param[out] dst Result tensor.
131 * @param[in] convert_policy Overflow policy.
132 */
133 static void arithmetic_subtraction(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, ConvertPolicy convert_policy);
134 /** Function to compute the bitwise and between two tensors.
135 *
136 * @param[in] src1 First tensor.
137 * @param[in] src2 Second tensor.
138 * @param[out] dst Result tensor.
139 */
140 static void bitwise_and(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
141 /** Function to compute the bitwise or between two tensors.
142 *
143 * @param[in] src1 First tensor.
144 * @param[in] src2 Second tensor.
145 * @param[out] dst Result tensor.
146 */
147 static void bitwise_or(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
148 /** Function to compute the bitwise xor between two tensors.
149 *
150 * @param[in] src1 First tensor.
151 * @param[in] src2 Second tensor.
152 * @param[out] dst Result tensor.
153 */
154 static void bitwise_xor(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
155 /** Function to compute the bitwise not of a tensor.
156 *
157 * @param[in] src Input tensor.
158 * @param[out] dst Result tensor.
159 */
160 static void bitwise_not(const RawTensor &src, RawTensor &dst);
SiCong Libacaf9a2017-06-19 13:41:45 +0100161 /** Function to compute box3x3 filtered result tensor.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100162 *
SiCong Libacaf9a2017-06-19 13:41:45 +0100163 * @param[in] src Input tensor.
164 * @param[out] dst Result tensor.
165 * @param[in] border_mode Border mode.
166 * @param[in] constant_border_value Constant border value if @p border_mode is BorderMode::CONSTANT.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100167 */
SiCong Libacaf9a2017-06-19 13:41:45 +0100168 static void box3x3(const RawTensor &src, RawTensor &dst, BorderMode border_mode, uint8_t constant_border_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100169 /** Depth conversion from @p src to @p dst
170 *
171 * @param[in] src First tensor.
172 * @param[out] dst Result tensor.
173 * @param[in] policy Overflow policy.
174 * @param[in] shift Value for down/up conversions.
175 */
176 static void depth_convert(const RawTensor &src, RawTensor &dst, ConvertPolicy policy, uint32_t shift);
SiCong Li5a536642017-06-19 14:47:05 +0100177 /** Function to compute gaussian3x3 filtered result tensor.
178 *
179 * @param[in] src Input tensor.
180 * @param[out] dst Result tensor.
181 * @param[in] border_mode Border mode
182 * @param[in] constant_border_value Constant border value if @p border_mode is BorderMode::CONSTANT
183 */
184 static void gaussian3x3(const RawTensor &src, RawTensor &dst, BorderMode border_mode, uint8_t constant_border_value);
SiCong Li3eb263e2017-06-19 15:31:43 +0100185 /** Function to compute gaussian5x5 filtered result tensor.
186 *
187 * @param[in] src Input tensor.
188 * @param[out] dst Result tensor.
189 * @param[in] border_mode Border mode
190 * @param[in] constant_border_value Constant border value if @p border_mode is BorderMode::CONSTANT
191 */
192 static void gaussian5x5(const RawTensor &src, RawTensor &dst, BorderMode border_mode, uint8_t constant_border_value);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100193 /** Compute GEMM function.
194 *
195 * @param[in] src1 First input tensor
196 * @param[in] src2 Second input tensor
197 * @param[in] src3 Third input tensor
198 * @param[out] dst Output tensr
199 * @param[in] alpha Weight of the matrix product
200 * @param[in] beta Weight of the third matrix
201 */
202 static void gemm(const RawTensor &src1, const RawTensor &src2, const RawTensor &src3,
203 RawTensor &dst, float alpha, float beta);
Isabella Gottardi3b77e9d2017-06-22 11:05:41 +0100204 /** Compute non linear filter function.
205 *
206 * @param[in] src First input tensor
207 * @param[out] dst Output tensor
208 * @param[in] function Non linear function to perform
209 * @param[in] mask_size Mask size. Supported sizes: 3, 5
210 * @param[in] pattern Matrix pattern
211 * @param[in] mask The given mask.
212 * @param[in] border_mode Strategy to use for borders.
213 * @param[in] constant_border_value (Optional) Constant value to use for borders if border_mode is set to CONSTANT.
214 */
215 static void non_linear_filter(const RawTensor &src, RawTensor &dst, NonLinearFilterFunction function, unsigned int mask_size,
216 MatrixPattern pattern, const uint8_t *mask, BorderMode border_mode, uint8_t constant_border_value = 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100217 /** Element-wise multiplication of @p src1, @p src2 and @p scale
218 *
219 * @param[in] src1 First tensor.
220 * @param[in] src2 Second tensor.
221 * @param[out] dst Result tensor.
222 * @param[in] scale A non-negative float multiplied to each product.
223 * @param[in] convert_policy Overflow policy.
224 * @param[in] rounding_policy Rounding policy.
225 */
226 static void pixel_wise_multiplication(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy);
227 /** Fixed-point Pixel-wise multiplication of @p src1 by @p src2
228 *
229 * @param[in] src1 First tensor.
230 * @param[in] src2 Second tensor.
231 * @param[out] dst Result tensor.
232 * @param[in] scale A non-negative float multiplied to each product.
233 * @param[in] convert_policy Overflow policy.
234 * @param[in] rounding_policy Rounding policy.
235 */
236 static void fixed_point_pixel_wise_multiplication(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy);
Isabella Gottardib797fa22017-06-23 15:02:11 +0100237 /** Table Lookup f@p src to @p dst
238 *
239 * @param[in] src Input tensor.
240 * @param[out] dst Result tensor.
241 * @param[in] lut Input lookup table.
242 */
243 template <typename T>
244 static void table_lookup(const RawTensor &src, RawTensor &dst, std::map<T, T> &lut);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100245 /** Threshold of@p src to @p dst
246 *
Isabella Gottardib797fa22017-06-23 15:02:11 +0100247 * @param[in] src Input tensor.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100248 * @param[out] dst Result tensor.
249 * @param[in] threshold Threshold. When the threhold type is RANGE, this is used as the lower threshold.
250 * @param[in] false_value value to set when the condition is not respected.
251 * @param[in] true_value value to set when the condition is respected.
252 * @param[in] type Thresholding type. Either RANGE or BINARY.
253 * @param[in] upper Upper threshold. Only used when the thresholding type is RANGE.
254 */
255 static void threshold(const RawTensor &src, RawTensor &dst, uint8_t threshold, uint8_t false_value, uint8_t true_value, ThresholdType type, uint8_t upper);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100256 /** Batch Normalization of @p src based on the information from @p norm_info.
257 *
258 * @param[in] src Input tensor.
259 * @param[out] dst Result tensor.
260 * @param[out] mean Mean vector tensor.
261 * @param[out] var Var vector tensor.
262 * @param[out] beta Beta vector tensor.
263 * @param[out] gamma Gamma vector tensor.
264 * @param[in] epsilon Small value to avoid division with zero.
265 * @param[in] fixed_point_position Fixed point position.
266 */
267 static void batch_normalization_layer(const RawTensor &src, RawTensor &dst, const RawTensor &mean, const RawTensor &var, const RawTensor &beta, const RawTensor &gamma, float epsilon,
268 int fixed_point_position = 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100269 /** Fully connected layer function
270 *
271 * @param[in] src Input tensor
272 * @param[in] weights Weights tensor.
273 * @param[in] bias Bias tensor.
274 * @param[out] dst Result tensor.
275 */
276 static void fully_connected_layer(const RawTensor &src, const RawTensor &weights, const RawTensor &bias, RawTensor &dst);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100277 /** Pooling layer of @p src based on the information from @p pool_info.
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100278 *
279 * @param[in] src Input tensor.
280 * @param[out] dst Result tensor.
281 * @param[in] pool_info Pooling Layer information.
282 * @param[in] fixed_point_position Fixed point position. (Optional)
283 */
284 static void pooling_layer(const RawTensor &src, RawTensor &dst, PoolingLayerInfo pool_info, int fixed_point_position = 0);
Georgios Pinitas7b7858d2017-06-21 16:44:24 +0100285 /** ROI Pooling layer of @p src based on the information from @p pool_info and @p rois.
286 *
287 * @param[in] src Input tensor.
288 * @param[out] dst Result tensor.
289 * @param[in] rois Region of Interest points.
290 * @param[in] pool_info ROI Pooling Layer information.
291 */
292 static void roi_pooling_layer(const RawTensor &src, RawTensor &dst, const std::vector<ROI> &rois, const ROIPoolingLayerInfo &pool_info);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100293 /** Fixed point operations of @p src
294 *
295 * @param[in] src Input tensor.
296 * @param[out] dst Result tensor.
297 * @param[in] op Fixed point operation to perform.
298 */
299 static void fixed_point_operation(const RawTensor &src, RawTensor &dst, FixedPointOp op);
300
301private:
302 ReferenceCPP() = delete;
303 ~ReferenceCPP() = delete;
304};
305} // namespace validation
306} // namespace test
307} // namespace arm_compute
Anthony Barbierac69aa12017-07-03 17:39:37 +0100308#endif /* __ARM_COMPUTE_TEST_REFERENCE_REFERENCE_CPP_H__ */