blob: 4173b8bc1d5e1bcbe7a80e4aedd54a9c8770eae4 [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
27#include "Reference.h"
28
29#include "RawTensor.h"
30
31#include <ostream>
32
33namespace arm_compute
34{
35class Tensor;
36
37namespace test
38{
39namespace validation
40{
41/** C++ reference implementation. */
42class ReferenceCPP final : public Reference
43{
44public:
Giorgio Arenaf7959862017-06-13 15:19:51 +010045 /** Function to compute the mean and standard deviation of a tensor.
46 *
47 * @param[in] src Input tensor.
48 * @param[out] mean Mean of the tensor.
49 * @param[out] std_dev Standard deviation of the tensor
50 */
51 static void mean_and_standard_deviation(const RawTensor &src, float &mean, float &std_dev);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052 /** Function to compute the integral image of a tensor.
53 *
54 * @param[in] src Input tensor.
55 * @param[out] dst Result tensor.
56 */
57 static void integral_image(const RawTensor &src, RawTensor &dst);
58 /** Function to compute the absolute difference between two tensors.
59 *
60 * @param[in] src1 First tensor.
61 * @param[in] src2 Second tensor.
62 * @param[out] dst Result tensor.
63 */
64 static void absolute_difference(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
65 /** Function to accumulate an input tensor into an output tensor.
66 *
67 * @param[in] src Input tensor.
68 * @param[in, out] dst Result tensor.
69 */
70 static void accumulate(const RawTensor &src, RawTensor &dst);
71 /** Function to accumulate a squared value from an input tensor to an output tensor.
72 *
73 * @param[in] src Input tensor.
74 * @param[in, out] dst Result tensor.
75 * @param[in] shift A uint32_t value within the range of [0, 15]
76 */
77 static void accumulate_squared(const RawTensor &src, RawTensor &dst, uint32_t shift);
78 /** Function to accumulate a weighted value from an input tensor to an output tensor.
79 *
80 * @param[in] src Input tensor.
81 * @param[in, out] dst Result tensor.
82 * @param[in] alpha A float value within the range of [0, 1]
83 */
84 static void accumulate_weighted(const RawTensor &src, RawTensor &dst, float alpha);
85 /** Arithmetic addition of @p src1 and @p src2
86 *
87 * @param[in] src1 First tensor.
88 * @param[in] src2 Second tensor.
89 * @param[out] dst Result tensor.
90 * @param[in] convert_policy Overflow policy.
91 */
92 static void arithmetic_addition(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, ConvertPolicy convert_policy);
93 /** Arithmetic subtraction of @p src2 from @p src1
94 *
95 * @param[in] src1 First tensor.
96 * @param[in] src2 Second tensor.
97 * @param[out] dst Result tensor.
98 * @param[in] convert_policy Overflow policy.
99 */
100 static void arithmetic_subtraction(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, ConvertPolicy convert_policy);
101 /** Function to compute the bitwise and between two tensors.
102 *
103 * @param[in] src1 First tensor.
104 * @param[in] src2 Second tensor.
105 * @param[out] dst Result tensor.
106 */
107 static void bitwise_and(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
108 /** Function to compute the bitwise or between two tensors.
109 *
110 * @param[in] src1 First tensor.
111 * @param[in] src2 Second tensor.
112 * @param[out] dst Result tensor.
113 */
114 static void bitwise_or(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
115 /** Function to compute the bitwise xor between two tensors.
116 *
117 * @param[in] src1 First tensor.
118 * @param[in] src2 Second tensor.
119 * @param[out] dst Result tensor.
120 */
121 static void bitwise_xor(const RawTensor &src1, const RawTensor &src2, RawTensor &dst);
122 /** Function to compute the bitwise not of a tensor.
123 *
124 * @param[in] src Input tensor.
125 * @param[out] dst Result tensor.
126 */
127 static void bitwise_not(const RawTensor &src, RawTensor &dst);
128 /** Function to compute 3-by-3 box filtered result tensor.
129 *
130 * @param[in] src Input tensor.
131 * @param[out] dst Result tensor.
132 */
133 static void box3x3(const RawTensor &src, RawTensor &dst);
134 /** Depth conversion from @p src to @p dst
135 *
136 * @param[in] src First tensor.
137 * @param[out] dst Result tensor.
138 * @param[in] policy Overflow policy.
139 * @param[in] shift Value for down/up conversions.
140 */
141 static void depth_convert(const RawTensor &src, RawTensor &dst, ConvertPolicy policy, uint32_t shift);
142 /** Compute GEMM function.
143 *
144 * @param[in] src1 First input tensor
145 * @param[in] src2 Second input tensor
146 * @param[in] src3 Third input tensor
147 * @param[out] dst Output tensr
148 * @param[in] alpha Weight of the matrix product
149 * @param[in] beta Weight of the third matrix
150 */
151 static void gemm(const RawTensor &src1, const RawTensor &src2, const RawTensor &src3,
152 RawTensor &dst, float alpha, float beta);
153 /** Element-wise multiplication of @p src1, @p src2 and @p scale
154 *
155 * @param[in] src1 First tensor.
156 * @param[in] src2 Second tensor.
157 * @param[out] dst Result tensor.
158 * @param[in] scale A non-negative float multiplied to each product.
159 * @param[in] convert_policy Overflow policy.
160 * @param[in] rounding_policy Rounding policy.
161 */
162 static void pixel_wise_multiplication(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy);
163 /** Fixed-point Pixel-wise multiplication of @p src1 by @p src2
164 *
165 * @param[in] src1 First tensor.
166 * @param[in] src2 Second tensor.
167 * @param[out] dst Result tensor.
168 * @param[in] scale A non-negative float multiplied to each product.
169 * @param[in] convert_policy Overflow policy.
170 * @param[in] rounding_policy Rounding policy.
171 */
172 static void fixed_point_pixel_wise_multiplication(const RawTensor &src1, const RawTensor &src2, RawTensor &dst, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy);
173 /** Threshold of@p src to @p dst
174 *
175 * @param[in] src First tensor.
176 * @param[out] dst Result tensor.
177 * @param[in] threshold Threshold. When the threhold type is RANGE, this is used as the lower threshold.
178 * @param[in] false_value value to set when the condition is not respected.
179 * @param[in] true_value value to set when the condition is respected.
180 * @param[in] type Thresholding type. Either RANGE or BINARY.
181 * @param[in] upper Upper threshold. Only used when the thresholding type is RANGE.
182 */
183 static void threshold(const RawTensor &src, RawTensor &dst, uint8_t threshold, uint8_t false_value, uint8_t true_value, ThresholdType type, uint8_t upper);
184 /** Activation layer of @p src base on information from @p act_info.
185 *
186 * @param[in] input Input tensor.
187 * @param[in] output Second tensor.
188 * @param[out] act_info Activation layer information.
189 */
190 static void activation_layer(const RawTensor &input, RawTensor &output, ActivationLayerInfo act_info);
191 /** Batch Normalization of @p src based on the information from @p norm_info.
192 *
193 * @param[in] src Input tensor.
194 * @param[out] dst Result tensor.
195 * @param[out] mean Mean vector tensor.
196 * @param[out] var Var vector tensor.
197 * @param[out] beta Beta vector tensor.
198 * @param[out] gamma Gamma vector tensor.
199 * @param[in] epsilon Small value to avoid division with zero.
200 * @param[in] fixed_point_position Fixed point position.
201 */
202 static void batch_normalization_layer(const RawTensor &src, RawTensor &dst, const RawTensor &mean, const RawTensor &var, const RawTensor &beta, const RawTensor &gamma, float epsilon,
203 int fixed_point_position = 0);
204 /** Convolution layer function
205 *
206 * @param[in] src Input tensor.
207 * @param[in] weights Weights tensor.
208 * @param[in] bias Bias tensor.
209 * @param[out] dst Result tensor.
210 * @param[in] conv_info Pads and strides information for the convolution layer.
211 */
212 static void convolution_layer(const RawTensor &src, const RawTensor &weights, const RawTensor &bias, RawTensor &dst, const PadStrideInfo &conv_info);
213 /** Fully connected layer function
214 *
215 * @param[in] src Input tensor
216 * @param[in] weights Weights tensor.
217 * @param[in] bias Bias tensor.
218 * @param[out] dst Result tensor.
219 */
220 static void fully_connected_layer(const RawTensor &src, const RawTensor &weights, const RawTensor &bias, RawTensor &dst);
221 /** Normalization of @p src based on the information from @p norm_info.
222 *
223 * @param[in] src Input tensor.
224 * @param[out] dst Result tensor.
225 * @param[in] norm_info Normalization Layer information.
226 */
227 static void normalization_layer(const RawTensor &src, RawTensor &dst, NormalizationLayerInfo norm_info);
228 /** Pooling layer of @p src based on the information from @p norm_info.
229 *
230 * @param[in] src Input tensor.
231 * @param[out] dst Result tensor.
232 * @param[in] pool_info Pooling Layer information.
233 * @param[in] fixed_point_position Fixed point position. (Optional)
234 */
235 static void pooling_layer(const RawTensor &src, RawTensor &dst, PoolingLayerInfo pool_info, int fixed_point_position = 0);
236 /** Softmax Layer of @p src.
237 *
238 * @param[in] src Input tensor.
239 * @param[out] dst Result tensor.
240 */
241 static void softmax_layer(const RawTensor &src, RawTensor &dst);
242 /** Fixed point operations of @p src
243 *
244 * @param[in] src Input tensor.
245 * @param[out] dst Result tensor.
246 * @param[in] op Fixed point operation to perform.
247 */
248 static void fixed_point_operation(const RawTensor &src, RawTensor &dst, FixedPointOp op);
249
250private:
251 ReferenceCPP() = delete;
252 ~ReferenceCPP() = delete;
253};
254} // namespace validation
255} // namespace test
256} // namespace arm_compute
257#endif