blob: f561a37a71643e069cce0238e781bc7c81f89c21 [file] [log] [blame]
John Richardsondd715f22017-09-18 16:10:48 +01001/*
Michele Di Giorgio9428a182020-03-30 14:10:20 +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,
59 ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +010060 {
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000061 _target = compute_target(shape0, shape1, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy, qinfo0, qinfo1, qinfo_out, act_info);
62 _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 +010063 }
64
65protected:
66 template <typename U>
67 void fill(U &&tensor, unsigned int seed_offset)
68 {
69 library->fill_tensor_uniform(tensor, seed_offset);
70 }
71
Michele Di Giorgio9428a182020-03-30 14:10:20 +010072 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 +010073 float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000074 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +010075 {
76 // Create tensors
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010077 TensorType src1 = create_tensor<TensorType>(shape0, dt_in1, 1, qinfo0);
78 TensorType src2 = create_tensor<TensorType>(shape1, dt_in2, 1, qinfo1);
Michele Di Giorgio9428a182020-03-30 14:10:20 +010079 TensorType dst = create_tensor<TensorType>(TensorShape::broadcast_shape(shape0, shape1), dt_out, 1, qinfo_out);
John Richardsondd715f22017-09-18 16:10:48 +010080
81 // Create and configure function
82 FunctionType multiply;
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000083 multiply.configure(&src1, &src2, &dst, scale, convert_policy, rounding_policy, act_info);
John Richardsondd715f22017-09-18 16:10:48 +010084
85 ARM_COMPUTE_EXPECT(src1.info()->is_resizable(), framework::LogLevel::ERRORS);
86 ARM_COMPUTE_EXPECT(src2.info()->is_resizable(), framework::LogLevel::ERRORS);
87 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
88
89 // Allocate tensors
90 src1.allocator()->allocate();
91 src2.allocator()->allocate();
92 dst.allocator()->allocate();
93
94 ARM_COMPUTE_EXPECT(!src1.info()->is_resizable(), framework::LogLevel::ERRORS);
95 ARM_COMPUTE_EXPECT(!src2.info()->is_resizable(), framework::LogLevel::ERRORS);
96 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
97
98 // Fill tensors
99 fill(AccessorType(src1), 0);
100 fill(AccessorType(src2), 1);
101
102 // Compute function
103 multiply.run();
104
105 return dst;
106 }
107
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100108 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 +0100109 float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000110 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out, ActivationLayerInfo act_info)
John Richardsondd715f22017-09-18 16:10:48 +0100111 {
112 // Create reference
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100113 SimpleTensor<T1> src1{ shape0, dt_in1, 1, qinfo0 };
114 SimpleTensor<T2> src2{ shape1, dt_in2, 1, qinfo1 };
John Richardsondd715f22017-09-18 16:10:48 +0100115
116 // Fill reference
117 fill(src1, 0);
118 fill(src2, 1);
119
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000120 auto result = reference::pixel_wise_multiplication<T1, T2, T3>(src1, src2, scale, convert_policy, rounding_policy, dt_out, qinfo_out);
121 return act_info.enabled() ? reference::activation_layer(result, act_info, qinfo_out) : result;
John Richardsondd715f22017-09-18 16:10:48 +0100122 }
123
124 TensorType _target{};
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100125 SimpleTensor<T3> _reference{};
Manuel Bottini79fa9a22019-02-22 17:54:22 +0000126};
127
128template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100129class PixelWiseMultiplicationValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000130{
131public:
132 template <typename...>
133 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy)
134 {
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100135 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, shape, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000136 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo());
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +0000137 }
138};
139
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100140template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
141class PixelWiseMultiplicationBroadcastValidationFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
142{
143public:
144 template <typename...>
145 void setup(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy)
146 {
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100147 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape0, shape1, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000148 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), ActivationLayerInfo());
149 }
150};
151
152template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
153class PixelWiseMultiplicationValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
154{
155public:
156 template <typename...>
157 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy, ActivationLayerInfo act_info)
158 {
159 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape, shape, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
160 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info);
161 }
162};
163
164template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2>
165class PixelWiseMultiplicationBroadcastValidationFloatFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>
166{
167public:
168 template <typename...>
169 void setup(const TensorShape &shape0, const TensorShape &shape1, DataType dt_in1, DataType dt_in2, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
170 ActivationLayerInfo act_info)
171 {
172 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2>::setup(shape0, shape1, dt_in1, dt_in2, dt_in2, scale, convert_policy, rounding_policy,
173 QuantizationInfo(), QuantizationInfo(), QuantizationInfo(), act_info);
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100174 }
175};
176
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100177template <typename TensorType, typename AccessorType, typename FunctionType, typename T1, typename T2, typename T3 = T2>
178class PixelWiseMultiplicationValidationQuantizedFixture : public PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100179{
180public:
181 template <typename...>
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100182 void setup(const TensorShape &shape, DataType dt_in1, DataType dt_in2, DataType dt_out, float scale, ConvertPolicy convert_policy, RoundingPolicy rounding_policy,
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100183 QuantizationInfo qinfo0, QuantizationInfo qinfo1, QuantizationInfo qinfo_out)
184 {
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000185 PixelWiseMultiplicationGenericValidationFixture<TensorType, AccessorType, FunctionType, T1, T2, T3>::setup(shape, shape, dt_in1, dt_in2, dt_out, scale, convert_policy, rounding_policy,
186 qinfo0, qinfo1, qinfo_out, ActivationLayerInfo());
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100187 }
188};
John Richardsondd715f22017-09-18 16:10:48 +0100189} // namespace validation
190} // namespace test
191} // namespace arm_compute
192#endif /* ARM_COMPUTE_TEST_PIXEL_WISE_MULTIPLICATION_FIXTURE */