blob: 03ce4c9639dbfe35dbcb388d59ba73b24f253311 [file] [log] [blame]
John Richardsondd715f22017-09-18 16:10:48 +01001/*
Manuel Bottini79fa9a22019-02-22 17:54:22 +00002 * Copyright (c) 2017-2019 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;
44constexpr AbsoluteTolerance<float> tolerance_qasymm8(1); /**< Tolerance value for comparing reference's output against implementation's output for quantized data types */
45} //namespace
John Richardsondd715f22017-09-18 16:10:48 +010046// *INDENT-OFF*
47// clang-format off
John Richardson9c450cc2017-11-22 12:00:41 +000048#define VALIDATE(TYPE, TOLERANCE) validate(CLAccessor(_target), _reference, AbsoluteTolerance<TYPE>(TOLERANCE), 0.f);
John Richardsondd715f22017-09-18 16:10:48 +010049
50#define PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(TEST_NAME, FIXTURE, MODE, SHAPES, DT1, DT2, SCALE, RP, VALIDATE) \
51 FIXTURE_DATA_TEST_CASE(TEST_NAME, CLPixelWiseMultiplication##FIXTURE, framework::DatasetMode::MODE, \
52 combine(combine(combine(combine(combine( \
53 datasets::SHAPES, \
54 framework::dataset::make("DataType1", DataType::DT1)), \
55 framework::dataset::make("DataType2", DataType::DT2)), \
56 framework::dataset::make("Scale", std::move(SCALE))), \
57 datasets::ConvertPolicies()), \
58 framework::dataset::make("RoundingPolicy", RoundingPolicy::RP))) \
59 { \
60 VALIDATE \
61 }
John Richardsondd715f22017-09-18 16:10:48 +010062// clang-format on
63// *INDENT-ON*
64} // namespace
65
66template <typename T>
67using CLPixelWiseMultiplicationToF16Fixture = PixelWiseMultiplicationValidationFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, half_float::half>;
68template <typename T>
69using CLPixelWiseMultiplicationToF32Fixture = PixelWiseMultiplicationValidationFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, float>;
70template <typename T>
Michele Di Giorgio6259e5f2018-01-17 17:29:33 +000071using CLPixelWiseMultiplicationBroadcastFixture = PixelWiseMultiplicationBroadcastValidationFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, float>;
John Richardsondd715f22017-09-18 16:10:48 +010072
73TEST_SUITE(CL)
74TEST_SUITE(PixelWiseMultiplication)
75
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000076// *INDENT-OFF*
77// clang-format off
78DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
Giorgio Arena70623822017-11-27 15:50:10 +000079 framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
80 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
81 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8), // Window shrink
82 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Invalid scale
83 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Invalid data type combination
84 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000085 }),
Giorgio Arena70623822017-11-27 15:50:10 +000086 framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
87 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000088 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8),
Giorgio Arena70623822017-11-27 15:50:10 +000089 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
90 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16),
91 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000092 })),
Giorgio Arena70623822017-11-27 15:50:10 +000093 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S16),
94 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000095 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::U8),
Giorgio Arena70623822017-11-27 15:50:10 +000096 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
97 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
98 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +000099 })),
Vidhya Sudhan Loganathan0fc25452018-06-18 14:40:56 +0100100 framework::dataset::make("Scale",{ 2.f, 2.f, 2.f, -1.f, 1.f, 1.f})),
101 framework::dataset::make("Expected", { true, true, false, false, false, false})),
Georgios Pinitasf9d3a0a2017-11-03 19:01:44 +0000102 input1_info, input2_info, output_info, scale, expected)
103{
Giorgio Arena70623822017-11-27 15:50:10 +0000104 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 +0000105 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
106}
107// clang-format on
108// *INDENT-ON*
109
John Richardsondd715f22017-09-18 16:10:48 +0100110TEST_SUITE(F16toF16)
John Richardsondd715f22017-09-18 16:10:48 +0100111TEST_SUITE(Scale255)
John Richardson9c450cc2017-11-22 12:00:41 +0000112PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmall, ToF16Fixture<half_float::half>, PRECOMMIT, SmallShapes(), F16, F16, scale_255, TO_NEAREST_UP, VALIDATE(float, 1.f))
John Richardsondd715f22017-09-18 16:10:48 +0100113TEST_SUITE_END() // Scale255
John Richardsondd715f22017-09-18 16:10:48 +0100114TEST_SUITE_END() // F16toF16
115
116TEST_SUITE(F32toF32)
John Richardsondd715f22017-09-18 16:10:48 +0100117TEST_SUITE(Scale255)
John Richardson9c450cc2017-11-22 12:00:41 +0000118PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmall, ToF32Fixture<float>, PRECOMMIT, SmallShapes(), F32, F32, scale_255, TO_NEAREST_UP, VALIDATE(float, 1.f))
John Richardsondd715f22017-09-18 16:10:48 +0100119TEST_SUITE_END() // Scale255
John Richardsondd715f22017-09-18 16:10:48 +0100120TEST_SUITE_END() // F32toF32
121
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100122PIXEL_WISE_MULTIPLICATION_FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, BroadcastFixture<float>, PRECOMMIT, SmallShapesBroadcast(), F32, F32, scale_255, TO_NEAREST_UP, VALIDATE(float, 1.f))
123
124template <typename T>
125using CLPixelWiseMultiplicationQuantizedFixture = PixelWiseMultiplicationValidationQuantizedFixture<CLTensor, CLAccessor, CLPixelWiseMultiplication, T, T>;
126
127TEST_SUITE(Quantized)
128TEST_SUITE(QASYMM8)
129FIXTURE_DATA_TEST_CASE(RunSmall, CLPixelWiseMultiplicationQuantizedFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(combine(combine(combine(combine(combine(datasets::SmallShapes(),
130 framework::dataset::make("DataType", DataType::QASYMM8)),
131 framework::dataset::make("Scale", { 1.f, 2.f })),
Manuel Bottini79fa9a22019-02-22 17:54:22 +0000132 framework::dataset::make("ConvertPolicy", { ConvertPolicy::SATURATE })),
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100133 framework::dataset::make("RoundingPolicy", RoundingPolicy::TO_NEAREST_EVEN)),
134 framework::dataset::make("QuantizationInfo", { QuantizationInfo(5.f / 255.f, 20) })),
135 framework::dataset::make("QuantizationInfo", { QuantizationInfo(2.f / 255.f, 10) })),
136 framework::dataset::make("QuantizationInfo", { QuantizationInfo(1.f / 255.f, 5) })))
137{
138 // Validate output
139 validate(CLAccessor(_target), _reference, tolerance_qasymm8);
140}
141TEST_SUITE_END() // QASYMM8
142TEST_SUITE_END() // Quantized
143
John Richardsondd715f22017-09-18 16:10:48 +0100144TEST_SUITE_END() // PixelWiseMultiplication
Georgios Pinitasbf28a3c2018-09-18 14:34:48 +0100145TEST_SUITE_END() // CL
John Richardsondd715f22017-09-18 16:10:48 +0100146} // namespace validation
147} // namespace test
148} // namespace arm_compute