blob: 4eb83859ac05d7826cd2ee2869e0c2f648112524 [file] [log] [blame]
John Richardsondd715f22017-09-18 16:10:48 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010079 TensorType src1 = create_tensor<TensorType>(shape0, dt_in1, 1, qinfo0);
80 TensorType src2 = create_tensor<TensorType>(shape1, dt_in2, 1, qinfo1);
Michele Di Giorgio9428a182020-03-30 14:10:20 +010081 TensorType dst = create_tensor<TensorType>(TensorShape::broadcast_shape(shape0, shape1), dt_out, 1, qinfo_out);
John Richardsondd715f22017-09-18 16:10:48 +010082
Manuel Bottini36b8f052020-06-23 12:22:15 +010083 auto allocate_tensor = [](TensorType & t)
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010084 {
85 ARM_COMPUTE_EXPECT(t.info()->is_resizable(), framework::LogLevel::ERRORS);
86 t.allocator()->allocate();
87 ARM_COMPUTE_EXPECT(!t.info()->is_resizable(), framework::LogLevel::ERRORS);
88 };
89
John Richardsondd715f22017-09-18 16:10:48 +010090 // Create and configure function
91 FunctionType multiply;
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010092 multiply.configure(&src1, &src2, (_is_inplace ? &src1 : &dst), scale, convert_policy, rounding_policy, act_info);
John Richardsondd715f22017-09-18 16:10:48 +010093
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010094 allocate_tensor(src1);
95 allocate_tensor(src2);
John Richardsondd715f22017-09-18 16:10:48 +010096
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010097 if(!_is_inplace)
98 {
99 allocate_tensor(dst);
100 }
John Richardsondd715f22017-09-18 16:10:48 +0100101
102 // Fill tensors
103 fill(AccessorType(src1), 0);
104 fill(AccessorType(src2), 1);
105
106 // Compute function
107 multiply.run();
108
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100109 if(_is_inplace)
110 {
111 return src1;
112 }
113
John Richardsondd715f22017-09-18 16:10:48 +0100114 return dst;
115 }
116
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100117 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 +0100118 float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000119 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +0100120 {
121 // Create reference
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100122 SimpleTensor<T1> src1{ shape0, dt_in1, 1, qinfo0 };
123 SimpleTensor<T2> src2{ shape1, dt_in2, 1, qinfo1 };
John Richardsondd715f22017-09-18 16:10:48 +0100124
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100125 // current in-place implementation only supports same metadata of input and output tensors.
126 // By ignoring output quantization information here, we can make test cases implementation much simpler.
127 QuantizationInfo output_qinfo = _is_inplace ? qinfo0 : qinfo_out;
128
John Richardsondd715f22017-09-18 16:10:48 +0100129 // Fill reference
130 fill(src1, 0);
131 fill(src2, 1);
132
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100133 auto result = reference::pixel_wise_multiplication<T1, T2, T3>(src1, src2, scale, convert_policy, rounding_policy, dt_out, output_qinfo);
134 return act_info.enabled() ? reference::activation_layer(result, act_info, output_qinfo) : result;
John Richardsondd715f22017-09-18 16:10:48 +0100135 }
136
137 TensorType _target{};
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100138 SimpleTensor<T3> _reference{};
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100139 bool _is_inplace{ false };
Manuel Bottini79fa9a22019-02-22 17:54:22 +0000140};
141
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100142template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
143class PixelWiseMultiplicationValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000144{
145public:
146 template <typename...>
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100147 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 +0000148 {
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100149 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape, shape, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
150 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo(), is_inplace);
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000151 }
152};
153
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100154template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
155class PixelWiseMultiplicationBroadcastValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100156{
157public:
158 template <typename...>
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100159 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,
160 bool is_inplace)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100161 {
Sheri Zhangfcf6f4e2020-06-25 20:01:00 +0100162 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
163 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo(), is_inplace);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000164 }
165};
166
167template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
168class PixelWiseMultiplicationValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
169{
170public:
171 template <typename...>
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100172 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 +0000173 {
174 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 +0100175 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info, is_inplace);
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000176 }
177};
178
179template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
180class PixelWiseMultiplicationBroadcastValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
181{
182public:
183 template <typename...>
184 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 +0100185 ActivationLayerInfo act_info, bool is_inplace)
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000186 {
187 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 +0100188 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info, is_inplace);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100189 }
190};
191
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100192template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
193class PixelWiseMultiplicationValidationQuantizedFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100194{
195public:
196 template <typename...>
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100197 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 +0100198 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, bool is_inplace)
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100199 {
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000200 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 +0100201 qinfo0, qinfo1, qinfo_out, ActivationLayerInfo(), is_inplace);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100202 }
203};
Sheri Zhanga449a362020-07-16 15:52:25 +0100204
205template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
206class PixelWiseMultiplicationBroadcastValidationQuantizedFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
207{
208public:
209 template <typename...>
210 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,
211 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, bool is_inplace)
212 {
213 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
214 qinfo0, qinfo1, qinfo_out, ActivationLayerInfo(), is_inplace);
215 }
216};
John Richardsondd715f22017-09-18 16:10:48 +0100217} // namespace validation
218} // namespace test
219} // namespace arm_compute
220#endif /* ARM_COMPUTE_TEST_PIXEL_WISE_MULTIPLICATION_FIXTURE */