blob: 8abccb2ed67286e2dfe2eac0fc9375a2e273de34 [file] [log] [blame]
George Worta1e7e282019-01-15 11:00:29 +00001/*
Sheri Zhangac6499a2021-02-10 15:32:38 +00002 * Copyright (c) 2019-2021 Arm Limited.
George Worta1e7e282019-01-15 11:00:29 +00003 *
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/core/Types.h"
25#include "arm_compute/runtime/NEON/functions/NEElementwiseOperations.h"
26#include "arm_compute/runtime/Tensor.h"
27#include "arm_compute/runtime/TensorAllocator.h"
28#include "tests/NEON/Accessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/ShapeDatasets.h"
31#include "tests/framework/Asserts.h"
32#include "tests/framework/Macros.h"
33#include "tests/framework/datasets/Datasets.h"
34#include "tests/validation/Validation.h"
35#include "tests/validation/fixtures/ElementwiseOperationsFixture.h"
36
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43namespace
44{
45RelativeTolerance<float> tolerance_fp32(0.000001f);
Sheri Zhangac6499a2021-02-10 15:32:38 +000046AbsoluteTolerance<int> tolerance_zero_s32(1); // Tolerance for S32 division
Manuel Bottini32780042020-11-26 16:33:57 +000047
George Worta1e7e282019-01-15 11:00:29 +000048/** Input data sets **/
Georgios Pinitas18134222020-09-03 21:00:23 +010049const auto ElementwiseDivisionS32Dataset = combine(combine(framework::dataset::make("DataType", DataType::S32),
50 framework::dataset::make("DataType", DataType::S32)),
51 framework::dataset::make("DataType", DataType::S32));
George Worta1e7e282019-01-15 11:00:29 +000052#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
53RelativeTolerance<half> tolerance_fp16(static_cast<half>(0.01f));
54const auto ElementwiseDivisionFP16Dataset = combine(combine(framework::dataset::make("DataType", DataType::F16), framework::dataset::make("DataType", DataType::F16)),
55 framework::dataset::make("DataType", DataType::F16));
56#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
57const auto ElementwiseDivisionFP32Dataset = combine(combine(framework::dataset::make("DataType", DataType::F32), framework::dataset::make("DataType", DataType::F32)),
58 framework::dataset::make("DataType", DataType::F32));
59} // namespace
60
61TEST_SUITE(NEON)
62TEST_SUITE(ElementwiseDivision)
63
64template <typename T>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +000065using NEElementwiseDivisionFixture = ArithmeticDivisionValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
George Worta1e7e282019-01-15 11:00:29 +000066
67// *INDENT-OFF*
68// clang-format off
69DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
70 framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
71 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
72 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
73 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Invalid data type combination
74 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
75 }),
76 framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
77 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
78 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
79 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32),
80 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
81 })),
82 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
83 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
84 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
85 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
86 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
87 })),
88 framework::dataset::make("Expected", { true, true, true, false, false})),
89 input1_info, input2_info, output_info, expected)
90{
91 ARM_COMPUTE_EXPECT(bool(NEElementwiseDivision::validate(&input1_info.clone()->set_is_resizable(false), &input2_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false))) == expected, framework::LogLevel::ERRORS);
92}
93// clang-format on
94// *INDENT-ON*
95
Sang-Hoon Park668ccdc2021-02-03 10:32:59 +000096// Test test cases will execute the function with dynamic-stated shapes
97// Since other elementwise operations share the same kernel, this tests are added only here.
98// Also, only FP32 is tested since data type doesn't/shouldn't matter with dynamic shapes.
99TEST_SUITE(DynamicShape)
100template <typename T>
101using CpuElementwiseDivisionDynamicShapeFixture = ArithmeticDivisionDynamicShapeValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
102
103template <typename T>
104using CpuElementwiseDivisionBroadcastDynamicShapeFixture = ArithmeticDivisionBroadcastDynamicShapeValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
105
106TEST_SUITE(F32)
107
108FIXTURE_DATA_TEST_CASE(RunSmall, CpuElementwiseDivisionDynamicShapeFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionFP32Dataset))
109{
110 // Validate output
111 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
112}
113
114FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, CpuElementwiseDivisionBroadcastDynamicShapeFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapesBroadcast(),
115 ElementwiseDivisionFP32Dataset))
116{
117 // Validate output
118 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
119}
120
121TEST_SUITE_END() // F32
122TEST_SUITE_END() // DynamicShape
123
George Worta1e7e282019-01-15 11:00:29 +0000124TEST_SUITE(Float)
125#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
126TEST_SUITE(F16)
127FIXTURE_DATA_TEST_CASE(RunSmall, NEElementwiseDivisionFixture<half>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionFP16Dataset))
128{
129 // Validate output
130 validate(Accessor(_target), _reference, tolerance_fp16, 0.01);
131}
132TEST_SUITE_END() // F16
133#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
134
135TEST_SUITE(F32)
Michalis Spyrou5ce99a22019-01-25 14:17:49 +0000136FIXTURE_DATA_TEST_CASE(RunSmall, NEElementwiseDivisionFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionFP32Dataset))
George Worta1e7e282019-01-15 11:00:29 +0000137{
138 // Validate output
139 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
140}
141
142template <typename T>
Giorgio Arena8b2a7d32020-02-11 17:21:31 +0000143using NEElementwiseDivisionBroadcastFixture = ArithmeticDivisionBroadcastValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
George Worta1e7e282019-01-15 11:00:29 +0000144
Michalis Spyrou5ce99a22019-01-25 14:17:49 +0000145FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, NEElementwiseDivisionBroadcastFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapesBroadcast(),
George Worta1e7e282019-01-15 11:00:29 +0000146 ElementwiseDivisionFP32Dataset))
147{
148 // Validate output
149 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
150}
151TEST_SUITE_END() // F32
152TEST_SUITE_END() // Float
153
Georgios Pinitas18134222020-09-03 21:00:23 +0100154TEST_SUITE(Integer)
155TEST_SUITE(S32)
156FIXTURE_DATA_TEST_CASE(RunSmall, NEElementwiseDivisionFixture<int32_t>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionS32Dataset))
157{
158 // Validate output
Manuel Bottini32780042020-11-26 16:33:57 +0000159 validate(Accessor(_target), _reference, tolerance_zero_s32);
Georgios Pinitas18134222020-09-03 21:00:23 +0100160}
161TEST_SUITE_END() // S32
162TEST_SUITE_END() // Integer
163
George Worta1e7e282019-01-15 11:00:29 +0000164TEST_SUITE_END() // ElementwiseDivision
Sheri Zhangac6499a2021-02-10 15:32:38 +0000165TEST_SUITE_END() // Neon
George Worta1e7e282019-01-15 11:00:29 +0000166} // namespace validation
167} // namespace test
168} // namespace arm_compute