blob: 70e618efa1b3bf6c7c16369765aa81659d430b5d [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#include "arm_compute/runtime/CL/functions/CLPixelWiseMultiplication.h"
25#include "tests/CL/CLAccessor.h"
26#include "tests/PaddingCalculator.h"
27#include "tests/datasets/ConvertPolicyDataset.h"
28#include "tests/datasets/ShapeDatasets.h"
29#include "tests/framework/Macros.h"
30#include "tests/validation/Validation.h"
John Richardsondd715f22017-09-18 16:10:48 +010031#include "tests/validation/fixtures/PixelWiseMultiplicationFixture.h"
32
33namespace arm_compute
34{
35namespace test
36{
37namespace validation
38{
39namespace
40{
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010041namespace
42{
43const float scale_255 = 1.f / 255.f;
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +010044constexpr AbsoluteTolerance<float> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for 8-bit quantized asymmetric data types */
45constexpr AbsoluteTolerance<float> tolerance_qsymm16(1); /**< Tolerance value for comparing reference's output against implementation's output for 16-bit quantized symmetric data types */
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000046const auto EmptyActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
47{ ActivationLayerInfo() });
48const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo",
49{
50 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 0.75f, 0.25f),
51 ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LOGISTIC, 0.75f, 0.25f)
52});
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010053// Since in-place computation on CL-side hasn't been intended to be implemented, they are not tested.
54// However, this dataset is required for the shared fixture and it would make extension easier when
55// CL-side also starts supporting in-place computation.
56const auto InPlaceDataSet = framework::dataset::make("InPlace", { false });
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +010057} //namespace
John Richardsondd715f22017-09-18 16:10:48 +010058// *INDENT-OFF*
59// clang-format off
John Richardson9c450cc2017-11-22 12:00:41 +000060#define VALIDATE(TYPE, TOLERANCE) validate(CLAccessor(_target), _reference, AbsoluteTolerance<TYPE>(TOLERANCE), 0.f);
John Richardsondd715f22017-09-18 16:10:48 +010061
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000062#define PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(TEST_NAME, FIXTURE, MODE, SHAPES, DT1, DT2, SCALE, RP, ACT, VALIDATE) \
John Richardsondd715f22017-09-18 16:10:48 +010063 FIXTURE_DATA_TEST_CASE(TEST_NAME, CLPixelWiseMultiplication##FIXTURE, framework::DatasetMode::MODE, \
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010064 combine(combine(combine(combine(combine(combine(combine( \
John Richardsondd715f22017-09-18 16:10:48 +010065 datasets::SHAPES, \
66 framework::dataset::make("DataType1", DataType::DT1)), \
67 framework::dataset::make("DataType2", DataType::DT2)), \
68 framework::dataset::make("Scale", std::move(SCALE))), \
69 datasets::ConvertPolicies()), \
Sang-Hoon Park95a6f722020-06-19 15:31:29 +010070 framework::dataset::make("RoundingPolicy", RoundingPolicy::RP)), ACT), \
71 InPlaceDataSet)) \
John Richardsondd715f22017-09-18 16:10:48 +010072 { \
73 VALIDATE \
74 }
John Richardsondd715f22017-09-18 16:10:48 +010075// clang-format on
76// *INDENT-ON*
77} // namespace
78
79template <typename T>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000080using CLPixelWiseMultiplicationToF16Fixture = PixelWiseMultiplicationValidationFloatFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, half_float::half>;
John Richardsondd715f22017-09-18 16:10:48 +010081template <typename T>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000082using CLPixelWiseMultiplicationToF32Fixture = PixelWiseMultiplicationValidationFloatFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, float>;
John Richardsondd715f22017-09-18 16:10:48 +010083template <typename T>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000084using CLPixelWiseMultiplicationBroadcastFixture = PixelWiseMultiplicationBroadcastValidationFloatFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, float>;
John Richardsondd715f22017-09-18 16:10:48 +010085
86TEST_SUITE(CL)
87TEST_SUITE(PixelWiseMultiplication)
88
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000089// *INDENT-OFF*
90// clang-format off
91DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
Giorgio Arena70623822017-11-27 15:50:10 +000092 framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
93 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
94 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8), // Window shrink
95 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Invalid scale
96 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Invalid data type combination
97 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000098 }),
Giorgio Arena70623822017-11-27 15:50:10 +000099 framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
100 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000101 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8),
Giorgio Arena70623822017-11-27 15:50:10 +0000102 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
103 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16),
104 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000105 })),
Giorgio Arena70623822017-11-27 15:50:10 +0000106 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16),
107 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000108 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8),
Giorgio Arena70623822017-11-27 15:50:10 +0000109 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
110 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
111 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000112 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100113 framework::dataset::make("Scale",{ 2.f, 2.f, 2.f, -1.f, 1.f, 1.f})),
114 framework::dataset::make("Expected", { true, true, false, false, false, false})),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000115 input1_info, input2_info, output_info, scale, expected)
116{
Giorgio Arena70623822017-11-27 15:50:10 +0000117 bool has_error = bool(CLPixelWiseMultiplication::validate(&input1_info.clone()->set_is_resizable(false), &input2_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), scale, ConvertPolicy::WRAP, RoundingPolicy::TO_ZERO));
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000118 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
119}
120// clang-format on
121// *INDENT-ON*
122
John Richardsondd715f22017-09-18 16:10:48 +0100123TEST_SUITE(F16toF16)
John Richardsondd715f22017-09-18 16:10:48 +0100124TEST_SUITE(Scale255)
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000125PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmall, ToF16Fixture<half_float::half>, PRECOMMIT, SmallShapes(), F16, F16, scale_255, TO_NEAREST_UP, EmptyActivationFunctionsDataset,
126 VALIDATE(float, 1.f))
127PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunWithActivation, ToF16Fixture<half_float::half>, ALL, TinyShapes(), F16, F16, scale_255, TO_NEAREST_UP, ActivationFunctionsDataset, VALIDATE(float,
128 1.f))
John Richardsondd715f22017-09-18 16:10:48 +0100129TEST_SUITE_END() // Scale255
John Richardsondd715f22017-09-18 16:10:48 +0100130TEST_SUITE_END() // F16toF16
131
132TEST_SUITE(F32toF32)
John Richardsondd715f22017-09-18 16:10:48 +0100133TEST_SUITE(Scale255)
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000134PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmall, ToF32Fixture<float>, PRECOMMIT, SmallShapes(), F32, F32, scale_255, TO_NEAREST_UP, EmptyActivationFunctionsDataset, VALIDATE(float, 1.f))
135PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunWithActivation, ToF32Fixture<float>, ALL, TinyShapes(), F32, F32, scale_255, TO_NEAREST_UP, ActivationFunctionsDataset, VALIDATE(float, 1.f))
John Richardsondd715f22017-09-18 16:10:48 +0100136TEST_SUITE_END() // Scale255
John Richardsondd715f22017-09-18 16:10:48 +0100137TEST_SUITE_END() // F32toF32
138
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000139PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, BroadcastFixture<float>, PRECOMMIT, SmallShapesBroadcast(), F32, F32, scale_255, TO_NEAREST_UP, EmptyActivationFunctionsDataset,
140 VALIDATE(float, 1.f))
141PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunWithActivationSmallBroadcast, BroadcastFixture<float>, ALL, TinyShapesBroadcast(), F32, F32, scale_255, TO_NEAREST_UP, ActivationFunctionsDataset,
142 VALIDATE(float, 1.f))
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100143
144template <typename T>
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100145using CLPixelWiseMultiplicationQuantizedFixture = PixelWiseMultiplicationValidationQuantizedFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, T>;
146using CLPixelWiseMultiplicationQSYMM16ToS32Fxture = PixelWiseMultiplicationValidationQuantizedFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, int16_t, int16_t, int32_t>;
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100147
148TEST_SUITE(Quantized)
149TEST_SUITE(QASYMM8)
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100150FIXTURE_DATA_TEST_CASE(RunSmall, CLPixelWiseMultiplicationQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100151 combine(combine(combine(combine(combine(combine(combine(combine(combine(combine(datasets::SmallShapes(),
152 framework::dataset::make("DataTypeIn1", DataType::QASYMM8)),
153 framework::dataset::make("DataTypeIn2", DataType::QASYMM8)),
154 framework::dataset::make("DataTypeOut", DataType::QASYMM8)),
155 framework::dataset::make("Scale", { 1.f, 2.f })),
156 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
157 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
158 framework::dataset::make("Src0QInfo", { QuantizationInfo(5.f / 255.f, 20) })),
159 framework::dataset::make("Src1QInfo", { QuantizationInfo(2.f / 255.f, 10) })),
160 framework::dataset::make("OUtQInfo", { QuantizationInfo(1.f / 255.f, 5) })),
161 InPlaceDataSet))
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100162{
163 // Validate output
164 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
165}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000166TEST_SUITE_END() // QASYMM8
167
168TEST_SUITE(QASYMM8_SIGNED)
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100169FIXTURE_DATA_TEST_CASE(RunSmall, CLPixelWiseMultiplicationQuantizedFixture<int8_t>, framework::DatasetMode::PRECOMMIT,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100170 combine(combine(combine(combine(combine(combine(combine(combine(combine(combine(datasets::SmallShapes(),
171 framework::dataset::make("DataTypeIn1", DataType::QASYMM8_SIGNED)),
172 framework::dataset::make("DataTypeIn2", DataType::QASYMM8_SIGNED)),
173 framework::dataset::make("DataTypeOut", DataType::QASYMM8_SIGNED)),
174 framework::dataset::make("Scale", { 1.f, 2.f })),
175 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
176 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
177 framework::dataset::make("Src0QInfo", { QuantizationInfo(5.f / 255.f, 20) })),
178 framework::dataset::make("Src1QInfo", { QuantizationInfo(2.f / 255.f, 10) })),
179 framework::dataset::make("OUtQInfo", { QuantizationInfo(1.f / 255.f, 5) })),
180 InPlaceDataSet))
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100181{
182 // Validate output
183 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
184}
Michele Di Giorgiocbbed282019-12-20 13:26:08 +0000185TEST_SUITE_END() // QASYMM8_SIGNED
186
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100187TEST_SUITE(QSYMM16)
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100188FIXTURE_DATA_TEST_CASE(RunSmall, CLPixelWiseMultiplicationQuantizedFixture<int16_t>, framework::DatasetMode::PRECOMMIT,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100189 combine(combine(combine(combine(combine(combine(combine(combine(combine(combine(datasets::SmallShapes(),
190 framework::dataset::make("DataTypeIn1", DataType::QSYMM16)),
191 framework::dataset::make("DataTypeIn2", DataType::QSYMM16)),
192 framework::dataset::make("DataTypeOut", DataType::QSYMM16)),
193 framework::dataset::make("Scale", { 1.f, 2.f })),
194 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
195 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
196 framework::dataset::make("Src0QInfo", { QuantizationInfo(1.f / 32768.f, 0) })),
197 framework::dataset::make("Src1QInfo", { QuantizationInfo(2.f / 32768.f, 0) })),
198 framework::dataset::make("OutQInfo", { QuantizationInfo(5.f / 32768.f, 0) })),
199 InPlaceDataSet))
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100200{
201 // Validate output
202 validate(CLAccessor(_target), _reference, tolerance_qsymm16);
203}
Michele Di Giorgio9428a182020-03-30 14:10:20 +0100204FIXTURE_DATA_TEST_CASE(RunLarge, CLPixelWiseMultiplicationQuantizedFixture<int16_t>, framework::DatasetMode::NIGHTLY,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100205 combine(combine(combine(combine(combine(combine(combine(combine(combine(combine(datasets::LargeShapes(),
206 framework::dataset::make("DataTypeIn1", DataType::QSYMM16)),
207 framework::dataset::make("DataTypeIn2", DataType::QSYMM16)),
208 framework::dataset::make("DataTypeOut", DataType::QSYMM16)),
209 framework::dataset::make("Scale", { 1.f, 2.f })),
210 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
211 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
212 framework::dataset::make("Src0QInfo", { QuantizationInfo(1.f / 32768.f, 0) })),
213 framework::dataset::make("Src1QInfo", { QuantizationInfo(2.f / 32768.f, 0) })),
214 framework::dataset::make("OutQInfo", { QuantizationInfo(5.f / 32768.f, 0) })),
215 InPlaceDataSet))
Michele Di Giorgiod8a468f2019-06-19 15:34:41 +0100216{
217 // Validate output
218 validate(CLAccessor(_target), _reference, tolerance_qsymm16);
219}
220TEST_SUITE_END() // QSYMM16
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100221TEST_SUITE(QSYMM16ToS32)
222FIXTURE_DATA_TEST_CASE(RunSmall, CLPixelWiseMultiplicationQSYMM16ToS32Fxture, framework::DatasetMode::ALL,
Sang-Hoon Park95a6f722020-06-19 15:31:29 +0100223 combine(combine(combine(combine(combine(combine(combine(combine(combine(combine(datasets::SmallShapes(),
224 framework::dataset::make("DataTypeIn1", DataType::QSYMM16)),
225 framework::dataset::make("DataTypeIn2", DataType::QSYMM16)),
226 framework::dataset::make("DataTypeOut", DataType::S32)),
227 framework::dataset::make("Scale", { 1.f })),
228 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
229 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
230 framework::dataset::make("Src0QInfo", { QuantizationInfo(1.f / 32768.f, 0) })),
231 framework::dataset::make("Src1QInfo", { QuantizationInfo(2.f / 32768.f, 0) })),
232 framework::dataset::make("OutQInfo", { QuantizationInfo(1.f, 0) })),
233 InPlaceDataSet))
Michele Di Giorgio7a0212a2020-04-14 16:08:32 +0100234{
235 // Validate output
236 validate(CLAccessor(_target), _reference, tolerance_qsymm16);
237}
238TEST_SUITE_END() // QSYMM16ToS32
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100239TEST_SUITE_END() // Quantized
240
John Richardsondd715f22017-09-18 16:10:48 +0100241TEST_SUITE_END() // PixelWiseMultiplication
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100242TEST_SUITE_END() // CL
John Richardsondd715f22017-09-18 16:10:48 +0100243} // namespace validation
244} // namespace test
245} // namespace arm_compute