blob: 13354eedc18cc058413f8e6da5dfda3d63222246 [file] [log] [blame]
Michalis Spyrou7e9391b2018-10-05 14:49:28 +01001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * Copyright (c) 2018-2021 Arm Limited.
Michalis Spyrou7e9391b2018-10-05 14:49:28 +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_REDUCE_MEAN_FIXTURE
25#define ARM_COMPUTE_TEST_REDUCE_MEAN_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010030#include "arm_compute/runtime/Tensor.h"
31#include "tests/AssetsLibrary.h"
32#include "tests/Globals.h"
33#include "tests/IAccessor.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Fixture.h"
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010036#include "tests/validation/Helpers.h"
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010037#include "tests/validation/reference/ReductionOperation.h"
38#include "tests/validation/reference/ReshapeLayer.h"
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
46template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
47class ReduceMeanValidationFixture : public framework::Fixture
48{
49public:
50 template <typename...>
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010051 void setup(TensorShape shape, DataType data_type, Coordinates axis, bool keep_dims, QuantizationInfo quantization_info_input, QuantizationInfo quantization_info_output)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010052 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010053 _target = compute_target(shape, data_type, axis, keep_dims, quantization_info_input, quantization_info_output);
54 _reference = compute_reference(shape, data_type, axis, keep_dims, quantization_info_input, quantization_info_output);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010055 }
56
57protected:
58 template <typename U>
59 void fill(U &&tensor)
60 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000061 if(tensor.data_type() == DataType::F32)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010062 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000063 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010064 library->fill(tensor, distribution, 0);
65 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +000066 else if(tensor.data_type() == DataType::F16)
67 {
Giorgio Arena33b103b2021-01-08 10:37:15 +000068 arm_compute::utils::uniform_real_distribution_16bit<half> distribution{ -1.0f, 1.0f };
Giorgio Arena4bdd1772020-12-17 16:47:07 +000069 library->fill(tensor, distribution, 0);
70 }
71 else if(is_data_type_quantized(tensor.data_type()))
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010072 {
Michele Di Giorgioed5a4922018-09-13 16:22:01 +010073 std::pair<int, int> bounds = get_quantized_bounds(tensor.quantization_info(), -1.0f, 1.0f);
74 std::uniform_int_distribution<> distribution(bounds.first, bounds.second);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010075
76 library->fill(tensor, distribution, 0);
77 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +000078 else
79 {
80 library->fill_tensor_uniform(tensor, 0);
81 }
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010082 }
83
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010084 TensorType compute_target(TensorShape &src_shape, DataType data_type, Coordinates axis, bool keep_dims, QuantizationInfo quantization_info_input, QuantizationInfo quantization_info_output)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010085 {
86 // Create tensors
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010087 TensorType src = create_tensor<TensorType>(src_shape, data_type, 1, quantization_info_input);
88 TensorShape dst_shape = arm_compute::misc::shape_calculator::calculate_reduce_mean_shape(src.info(), axis, keep_dims);
89 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, quantization_info_output);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010090
91 // Create and configure function
92 FunctionType reduction_mean;
93 reduction_mean.configure(&src, axis, keep_dims, &dst);
94
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010095 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
96 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +010097
98 // Allocate tensors
99 src.allocator()->allocate();
100 dst.allocator()->allocate();
101
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100102 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
103 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100104
105 // Fill tensors
106 fill(AccessorType(src));
107
108 // Compute function
109 reduction_mean.run();
110
111 return dst;
112 }
113
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100114 SimpleTensor<T> compute_reference(TensorShape &src_shape, DataType data_type, Coordinates axis, bool keep_dims, QuantizationInfo quantization_info_input, QuantizationInfo quantization_info_output)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100115 {
116 // Create reference
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100117 SimpleTensor<T> src{ src_shape, data_type, 1, quantization_info_input };
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100118
119 // Fill reference
120 fill(src);
121
122 SimpleTensor<T> out;
123 for(unsigned int i = 0; i < axis.num_dimensions(); ++i)
124 {
125 TensorShape output_shape = i == 0 ? src_shape : out.shape();
126 output_shape.set(axis[i], 1);
Mohammed Suhail Munshi470cc5d2023-02-09 11:52:06 +0000127 bool is_opencl = false;
128
129#ifdef ARM_COMPUTE_OPENCL_ENABLED
130 is_opencl = std::is_same<CLTensor, TensorType>::value; // Round down to zero on opencl to match kernel
131#endif /* ARM_COMPUTE_OPENCL_ENABLED */
132 out = reference::reduction_operation<T, T>(i == 0 ? src : out, output_shape, axis[i], ReductionOperation::MEAN_SUM, quantization_info_output, is_opencl ? RoundingPolicy::TO_ZERO : RoundingPolicy::TO_NEAREST_UP);
133
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100134 }
135
136 if(!keep_dims)
137 {
138 TensorShape output_shape = src_shape;
Michalis Spyrou96f84612018-10-24 14:01:04 +0100139 std::sort(axis.begin(), axis.begin() + axis.num_dimensions());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100140 for(unsigned int i = 0; i < axis.num_dimensions(); ++i)
141 {
Michalis Spyrou96f84612018-10-24 14:01:04 +0100142 output_shape.remove_dimension(axis[i] - i);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100143 }
144
145 out = reference::reshape_layer(out, output_shape);
146 }
147 return out;
148 }
149
150 TensorType _target{};
151 SimpleTensor<T> _reference{};
152};
153
154template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
155class ReduceMeanQuantizedFixture : public ReduceMeanValidationFixture<TensorType, AccessorType, FunctionType, T>
156{
157public:
158 template <typename...>
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100159 void setup(TensorShape shape, DataType data_type, Coordinates axis, bool keep_dims, QuantizationInfo quantization_info_input, QuantizationInfo quantization_info_output)
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100160 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100161 ReduceMeanValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, keep_dims, quantization_info_input, quantization_info_output);
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100162 }
163};
164
165template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
166class ReduceMeanFixture : public ReduceMeanValidationFixture<TensorType, AccessorType, FunctionType, T>
167{
168public:
169 template <typename...>
170 void setup(TensorShape shape, DataType data_type, Coordinates axis, bool keep_dims)
171 {
Manuel Bottinic58f0ad2020-08-07 16:49:15 +0100172 ReduceMeanValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, keep_dims, QuantizationInfo(), QuantizationInfo());
Michalis Spyrou7e9391b2018-10-05 14:49:28 +0100173 }
174};
175} // namespace validation
176} // namespace test
177} // namespace arm_compute
178#endif /* ARM_COMPUTE_TEST_REDUCE_MEAN_FIXTURE */