blob: 8dc517910981d309526c0d6f0cc3a45e1f7a798d [file] [log] [blame]
John Richardsondd715f22017-09-18 16:10:48 +01001/*
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +01002 * Copyright (c) 2017-2021 Arm Limited.
John Richardsondd715f22017-09-18 16:10:48 +01003 *
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_PIXEL_WISE_MULTIPLICATION_FIXTURE
25#define ARM_COMPUTE_TEST_PIXEL_WISE_MULTIPLICATION_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/IAccessor.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Fixture.h"
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000034#include "tests/validation/reference/ActivationLayer.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/PixelWiseMultiplication.h"
John Richardsondd715f22017-09-18 16:10:48 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
Michele Di Giorgio9428a182020-03-30 14:10:20 +010043template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010044class PixelWiseMultiplicationGenericValidationFixture : public framework::Fixture
John Richardsondd715f22017-09-18 16:10:48 +010045{
46public:
47 template <typename...>
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000048 void setup(const TensorShape &shape0,
49 const TensorShape &shape1,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000050 DataType dt_in1,
51 DataType dt_in2,
52 DataType dt_out,
53 float scale,
54 ConvertPolicy convert_policy,
55 RoundingPolicy rounding_policy,
56 QuantizationInfo qinfo0,
57 QuantizationInfo qinfo1,
58 QuantizationInfo qinfo_out,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010059 ActivationLayerInfo act_info,
60 bool is_inplace)
John Richardsondd715f22017-09-18 16:10:48 +010061 {
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010062 _is_inplace = is_inplace;
63 _target = compute_target(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy, qinfo0, qinfo1, qinfo_out, act_info);
64 _reference = compute_reference(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy, qinfo0, qinfo1, qinfo_out, act_info);
John Richardsondd715f22017-09-18 16:10:48 +010065 }
66
67protected:
68 template <typename U>
69 void fill(U &&tensor, unsigned int seed_offset)
70 {
71 library->fill_tensor_uniform(tensor, seed_offset);
72 }
73
Michele Di Giorgio9428a182020-03-30 14:10:20 +010074 TensorType compute_target(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, DataType dt_out,
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010075 float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000076 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +010077 {
78 // Create tensors
Sheri Zhanga387e272021-06-29 17:34:06 +010079 const TensorShape out_shape = TensorShape::broadcast_shape(shape0, shape1);
80 TensorType src1 = create_tensor<TensorType>(shape0, dt_in1, 1, qinfo0);
81 TensorType src2 = create_tensor<TensorType>(shape1, dt_in2, 1, qinfo1);
82 TensorType dst = create_tensor<TensorType>(out_shape, dt_out, 1, qinfo_out);
83
84 // Check whether do in-place computation and whether inputs are broadcast compatible
85 TensorType *actual_dst = &dst;
86 if(_is_inplace)
87 {
88 bool src1_is_inplace = !arm_compute::detail::have_different_dimensions(out_shape, shape0, 0) && (qinfo0 == qinfo_out) && (dt_in1 == dt_out);
89 bool src2_is_inplace = !arm_compute::detail::have_different_dimensions(out_shape, shape1, 0) && (qinfo1 == qinfo_out) && (dt_in2 == dt_out);
90 bool do_in_place = out_shape.total_size() != 0 && (src1_is_inplace || src2_is_inplace);
91 ARM_COMPUTE_ASSERT(do_in_place);
92
93 if(src1_is_inplace)
94 {
95 actual_dst = &src1;
96 }
97 else
98 {
99 actual_dst = &src2;
100 }
101 }
John Richardsondd715f22017-09-18 16:10:48 +0100102
Manuel Bottini36b8f052020-06-23 12:22:15 +0100103 auto allocate_tensor = [](TensorType & t)
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100104 {
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100105 ARM_COMPUTE_ASSERT(t.info()->is_resizable());
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100106 t.allocator()->allocate();
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100107 ARM_COMPUTE_ASSERT(!t.info()->is_resizable());
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100108 };
109
John Richardsondd715f22017-09-18 16:10:48 +0100110 // Create and configure function
111 FunctionType multiply;
Sheri Zhanga387e272021-06-29 17:34:06 +0100112 multiply.configure(&src1, &src2, actual_dst, scale, convert_policy, rounding_policy, act_info);
John Richardsondd715f22017-09-18 16:10:48 +0100113
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100114 allocate_tensor(src1);
115 allocate_tensor(src2);
John Richardsondd715f22017-09-18 16:10:48 +0100116
Sheri Zhanga387e272021-06-29 17:34:06 +0100117 // If don't do in-place computation, still need to allocate original dst
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100118 if(!_is_inplace)
119 {
120 allocate_tensor(dst);
121 }
John Richardsondd715f22017-09-18 16:10:48 +0100122
123 // Fill tensors
124 fill(AccessorType(src1), 0);
125 fill(AccessorType(src2), 1);
126
127 // Compute function
128 multiply.run();
129
Sheri Zhanga387e272021-06-29 17:34:06 +0100130 return std::move(*actual_dst);
John Richardsondd715f22017-09-18 16:10:48 +0100131 }
132
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100133 SimpleTensor<T3> compute_reference(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, DataType dt_out,
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100134 float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000135 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +0100136 {
137 // Create reference
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100138 SimpleTensor<T1> src1{ shape0, dt_in1, 1, qinfo0 };
139 SimpleTensor<T2> src2{ shape1, dt_in2, 1, qinfo1 };
John Richardsondd715f22017-09-18 16:10:48 +0100140
141 // Fill reference
142 fill(src1, 0);
143 fill(src2, 1);
144
Sheri Zhanga387e272021-06-29 17:34:06 +0100145 auto result = reference::pixel_wise_multiplication<T1, T2, T3>(src1, src2, scale, convert_policy, rounding_policy, dt_out, qinfo_out);
146 return act_info.enabled() ? reference::activation_layer(result, act_info, qinfo_out) : result;
John Richardsondd715f22017-09-18 16:10:48 +0100147 }
148
149 TensorType _target{};
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100150 SimpleTensor<T3> _reference{};
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100151 bool _is_inplace{ false };
Manuel Bottini79fa9a22019-02-22 17:54:22 +0000152};
153
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100154template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
155class PixelWiseMultiplicationValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000156{
157public:
158 template <typename...>
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100159 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, DataType dt_out, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy, bool is_inplace)
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000160 {
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100161 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape, shape, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
162 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo(), is_inplace);
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000163 }
164};
165
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100166template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
167class PixelWiseMultiplicationBroadcastValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100168{
169public:
170 template <typename...>
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100171 void setup(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, DataType dt_out, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
172 bool is_inplace)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100173 {
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100174 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
175 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo(), is_inplace);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000176 }
177};
178
179template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
180class PixelWiseMultiplicationValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
181{
182public:
183 template <typename...>
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100184 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy, ActivationLayerInfo act_info, bool is_inplace)
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000185 {
186 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, shape, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100187 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info, is_inplace);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000188 }
189};
190
191template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Suhail Munshi448cb452021-04-23 16:23:25 +0100192class PixelWiseMultiplicationValidationIntegerFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
193{
194public:
195 template <typename...>
196 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy, ActivationLayerInfo act_info, bool is_inplace)
197 {
198 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, shape, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
199 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info, is_inplace);
200 }
201};
202
203template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000204class PixelWiseMultiplicationBroadcastValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
205{
206public:
207 template <typename...>
208 void setup(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100209 ActivationLayerInfo act_info, bool is_inplace)
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000210 {
211 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape0, shape1, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100212 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info, is_inplace);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100213 }
214};
215
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100216template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
217class PixelWiseMultiplicationValidationQuantizedFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100218{
219public:
220 template <typename...>
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100221 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, DataType dt_out, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100222 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, bool is_inplace)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100223 {
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000224 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape, shape, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100225 qinfo0, qinfo1, qinfo_out, ActivationLayerInfo(), is_inplace);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100226 }
227};
Sheri Zhanga449a362020-07-16 15:52:25 +0100228
229template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
230class PixelWiseMultiplicationBroadcastValidationQuantizedFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
231{
232public:
233 template <typename...>
234 void setup(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, DataType dt_out, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
235 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, bool is_inplace)
236 {
237 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
238 qinfo0, qinfo1, qinfo_out, ActivationLayerInfo(), is_inplace);
239 }
240};
John Richardsondd715f22017-09-18 16:10:48 +0100241} // namespace validation
242} // namespace test
243} // namespace arm_compute
244#endif /* ARM_COMPUTE_TEST_PIXEL_WISE_MULTIPLICATION_FIXTURE */