blob: d01f41abf0e3c56e7e6075d25a1722bb96ce446a [file] [log] [blame]
Georgios Pinitasd9769582017-08-03 10:19:40 +01001/*
Michalis Spyrouaea14c62019-01-03 11:10:25 +00002 * Copyright (c) 2017-2019 ARM Limited.
Georgios Pinitasd9769582017-08-03 10:19:40 +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_REDUCTION_OPERATION_FIXTURE
25#define ARM_COMPUTE_TEST_REDUCTION_OPERATION_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/runtime/Tensor.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +010030#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010033#include "tests/framework/Asserts.h"
34#include "tests/framework/Fixture.h"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/ReductionOperation.h"
Georgios Pinitasd9769582017-08-03 10:19:40 +010036
37namespace arm_compute
38{
39namespace test
40{
41namespace validation
42{
43template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
44class ReductionOperationValidationFixture : public framework::Fixture
45{
46public:
47 template <typename...>
Michalis Spyroubcf8a962018-10-12 10:51:31 +010048 void setup(TensorShape shape, DataType data_type, unsigned int axis, ReductionOperation op, QuantizationInfo quantization_info)
Georgios Pinitasd9769582017-08-03 10:19:40 +010049 {
50 const TensorShape output_shape = get_output_shape(shape, axis);
Michalis Spyroubcf8a962018-10-12 10:51:31 +010051 _target = compute_target(shape, output_shape, data_type, axis, op, quantization_info);
52 _reference = compute_reference(shape, output_shape, data_type, axis, op, quantization_info);
Georgios Pinitasd9769582017-08-03 10:19:40 +010053 }
54
55protected:
56 template <typename U>
57 void fill(U &&tensor)
58 {
Michalis Spyroubcf8a962018-10-12 10:51:31 +010059 if(!is_data_type_quantized(tensor.data_type()))
60 {
61 std::uniform_real_distribution<> distribution(-1.0f, 1.0f);
62 library->fill(tensor, distribution, 0);
63 }
64 else
65 {
66 std::pair<int, int> bounds = get_quantized_bounds(tensor.quantization_info(), -1.0f, 1.0f);
67 std::uniform_int_distribution<uint8_t> distribution(bounds.first, bounds.second);
68
69 library->fill(tensor, distribution, 0);
70 }
Georgios Pinitasd9769582017-08-03 10:19:40 +010071 }
72
Michalis Spyroubcf8a962018-10-12 10:51:31 +010073 TensorType compute_target(const TensorShape &src_shape, const TensorShape &dst_shape, DataType data_type, unsigned int axis, ReductionOperation op, QuantizationInfo quantization_info)
Georgios Pinitasd9769582017-08-03 10:19:40 +010074 {
75 // Create tensors
Michalis Spyroubcf8a962018-10-12 10:51:31 +010076 TensorType src = create_tensor<TensorType>(src_shape, data_type, 1, quantization_info);
77 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, quantization_info);
Georgios Pinitasd9769582017-08-03 10:19:40 +010078
79 // Create and configure function
80 FunctionType reduction_func;
81 reduction_func.configure(&src, &dst, axis, op);
82
83 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
84 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
85
86 // Allocate tensors
87 src.allocator()->allocate();
88 dst.allocator()->allocate();
89
90 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
91 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
92
93 // Fill tensors
94 fill(AccessorType(src));
95
96 // Compute function
97 reduction_func.run();
98
99 return dst;
100 }
101
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100102 SimpleTensor<T> compute_reference(const TensorShape &src_shape, const TensorShape &dst_shape, DataType data_type, unsigned int axis, ReductionOperation op, QuantizationInfo quantization_info)
Georgios Pinitasd9769582017-08-03 10:19:40 +0100103 {
104 // Create reference
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100105 SimpleTensor<T> src{ src_shape, data_type, 1, quantization_info };
Georgios Pinitasd9769582017-08-03 10:19:40 +0100106
107 // Fill reference
108 fill(src);
109
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000110 return reference::reduction_operation<T, T>(src, dst_shape, axis, op);
Georgios Pinitasd9769582017-08-03 10:19:40 +0100111 }
112
113 TensorType _target{};
114 SimpleTensor<T> _reference{};
115
116private:
117 TensorShape get_output_shape(TensorShape shape, unsigned int axis)
118 {
119 TensorShape output_shape(shape);
120 output_shape.set(axis, 1);
121 return output_shape;
122 }
123};
Michalis Spyroubcf8a962018-10-12 10:51:31 +0100124
125template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
126class ReductionOperationQuantizedFixture : public ReductionOperationValidationFixture<TensorType, AccessorType, FunctionType, T>
127{
128public:
129 template <typename...>
130 void setup(TensorShape shape, DataType data_type, unsigned int axis, ReductionOperation op, QuantizationInfo quantization_info = QuantizationInfo())
131 {
132 ReductionOperationValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, op, quantization_info);
133 }
134};
135
136template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
137class ReductionOperationFixture : public ReductionOperationValidationFixture<TensorType, AccessorType, FunctionType, T>
138{
139public:
140 template <typename...>
141 void setup(TensorShape shape, DataType data_type, unsigned int axis, ReductionOperation op)
142 {
143 ReductionOperationValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, op, QuantizationInfo());
144 }
145};
Georgios Pinitasd9769582017-08-03 10:19:40 +0100146} // namespace validation
147} // namespace test
148} // namespace arm_compute
149#endif /* ARM_COMPUTE_TEST_REDUCTION_OPERATION_FIXTURE */