blob: e68ce19eedb65d6e5252d5960971880a31c7a6b6 [file] [log] [blame]
George Worta1e7e282019-01-15 11:00:29 +00001/*
2 * Copyright (c) 2019 ARM Limited.
3 *
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);
46/** Input data sets **/
47#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
48RelativeTolerance<half> tolerance_fp16(static_cast<half>(0.01f));
49const auto ElementwiseDivisionFP16Dataset = combine(combine(framework::dataset::make("DataType", DataType::F16), framework::dataset::make("DataType", DataType::F16)),
50 framework::dataset::make("DataType", DataType::F16));
51#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
52const auto ElementwiseDivisionFP32Dataset = combine(combine(framework::dataset::make("DataType", DataType::F32), framework::dataset::make("DataType", DataType::F32)),
53 framework::dataset::make("DataType", DataType::F32));
54} // namespace
55
56TEST_SUITE(NEON)
57TEST_SUITE(ElementwiseDivision)
58
59template <typename T>
60using NEElementwiseDivisionFixture = ElementwiseDivisionValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
61
62// *INDENT-OFF*
63// clang-format off
64DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
65 framework::dataset::make("Input1Info", { TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
66 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
67 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
68 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Invalid data type combination
69 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
70 }),
71 framework::dataset::make("Input2Info",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
72 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
73 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
74 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::S32),
75 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
76 })),
77 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
78 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
79 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
80 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F32),
81 TensorInfo(TensorShape(48U, 11U, 2U), 1, DataType::F32),
82 })),
83 framework::dataset::make("Expected", { true, true, true, false, false})),
84 input1_info, input2_info, output_info, expected)
85{
86 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);
87}
88// clang-format on
89// *INDENT-ON*
90
91TEST_SUITE(Float)
92#ifdef __ARM_FEATURE_FP16_VECTOR_ARITHMETIC
93TEST_SUITE(F16)
94FIXTURE_DATA_TEST_CASE(RunSmall, NEElementwiseDivisionFixture<half>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionFP16Dataset))
95{
96 // Validate output
97 validate(Accessor(_target), _reference, tolerance_fp16, 0.01);
98}
99TEST_SUITE_END() // F16
100#endif /* __ARM_FEATURE_FP16_VECTOR_ARITHMETIC */
101
102TEST_SUITE(F32)
103DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, framework::dataset::concat(datasets::SmallShapes(), datasets::LargeShapes()),
104 shape)
105{
106 // Create tensors
107 Tensor ref_src1 = create_tensor<Tensor>(shape, DataType::F32);
108 Tensor ref_src2 = create_tensor<Tensor>(shape, DataType::F32);
109 Tensor dst = create_tensor<Tensor>(shape, DataType::F32);
110
111 // Create and Configure function
112 NEElementwiseDivision add;
113 add.configure(&ref_src1, &ref_src2, &dst);
114
115 // Validate valid region
116 const ValidRegion valid_region = shape_to_valid_region(shape);
117 validate(dst.info()->valid_region(), valid_region);
118}
119
Michalis Spyrou5ce99a22019-01-25 14:17:49 +0000120FIXTURE_DATA_TEST_CASE(RunSmall, NEElementwiseDivisionFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapes(), ElementwiseDivisionFP32Dataset))
George Worta1e7e282019-01-15 11:00:29 +0000121{
122 // Validate output
123 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
124}
125
126template <typename T>
127using NEElementwiseDivisionBroadcastFixture = ElementwiseDivisionBroadcastValidationFixture<Tensor, Accessor, NEElementwiseDivision, T>;
128
Michalis Spyrou5ce99a22019-01-25 14:17:49 +0000129FIXTURE_DATA_TEST_CASE(RunSmallBroadcast, NEElementwiseDivisionBroadcastFixture<float>, framework::DatasetMode::ALL, combine(datasets::SmallShapesBroadcast(),
George Worta1e7e282019-01-15 11:00:29 +0000130 ElementwiseDivisionFP32Dataset))
131{
132 // Validate output
133 validate(Accessor(_target), _reference, tolerance_fp32, 0.01);
134}
135TEST_SUITE_END() // F32
136TEST_SUITE_END() // Float
137
138TEST_SUITE_END() // ElementwiseDivision
139TEST_SUITE_END() // NEON
140} // namespace validation
141} // namespace test
142} // namespace arm_compute