blob: 9a600b86458d97210156a9c5c2710e0dd5120c1d [file] [log] [blame]
Michalis Spyrou7930db42018-11-22 17:36:28 +00001/*
Matthew Bentham945b8da2023-07-12 11:54:59 +00002 * Copyright (c) 2018-2023 Arm Limited.
Michalis Spyrou7930db42018-11-22 17:36:28 +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#ifndef ARM_COMPUTE_TEST_ARG_MIN_MAX_FIXTURE
25#define ARM_COMPUTE_TEST_ARG_MIN_MAX_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
Sang-Hoon Park2697fd82019-10-15 16:49:24 +010029#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Michalis Spyrou7930db42018-11-22 17:36:28 +000030#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"
36#include "tests/validation/Helpers.h"
37#include "tests/validation/reference/ReductionOperation.h"
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
Michalis Spyrouaea14c62019-01-03 11:10:25 +000046class ArgMinMaxValidationBaseFixture : public framework::Fixture
Michalis Spyrou7930db42018-11-22 17:36:28 +000047{
48public:
Michalis Spyrouaea14c62019-01-03 11:10:25 +000049 void setup(TensorShape shape, DataType data_type, int axis, ReductionOperation op, QuantizationInfo q_info)
Michalis Spyrou7930db42018-11-22 17:36:28 +000050 {
Michalis Spyrouaea14c62019-01-03 11:10:25 +000051 _target = compute_target(shape, data_type, axis, op, q_info);
52 _reference = compute_reference(shape, data_type, axis, op, q_info);
Michalis Spyrou7930db42018-11-22 17:36:28 +000053 }
54
55protected:
56 template <typename U>
57 void fill(U &&tensor)
58 {
Michalis Spyroub9626ab2019-05-13 17:41:01 +010059 switch(tensor.data_type())
Michalis Spyrouaea14c62019-01-03 11:10:25 +000060 {
Michalis Spyroub9626ab2019-05-13 17:41:01 +010061 case DataType::F16:
62 {
Giorgio Arenaa8e2aeb2021-01-06 11:34:57 +000063 arm_compute::utils::uniform_real_distribution_16bit<half> distribution{ -1.0f, 1.0f };
Giorgio Arena6aeb2172020-12-15 15:45:43 +000064 library->fill(tensor, distribution, 0);
65 break;
66 }
67 case DataType::F32:
68 {
69 std::uniform_real_distribution<float> distribution(-1.0f, 1.0f);
Michalis Spyroub9626ab2019-05-13 17:41:01 +010070 library->fill(tensor, distribution, 0);
71 break;
72 }
73 case DataType::S32:
74 {
75 std::uniform_int_distribution<int32_t> distribution(-100, 100);
76 library->fill(tensor, distribution, 0);
77 break;
78 }
79 case DataType::QASYMM8:
80 {
81 std::pair<int, int> bounds = get_quantized_bounds(tensor.quantization_info(), -1.0f, 1.0f);
Pablo Tello29cab362022-03-10 17:05:34 +000082 std::uniform_int_distribution<uint32_t> distribution(bounds.first, bounds.second);
Michalis Spyrouaea14c62019-01-03 11:10:25 +000083
Michalis Spyroub9626ab2019-05-13 17:41:01 +010084 library->fill(tensor, distribution, 0);
85 break;
86 }
Luca Foschianiee939fb2020-01-28 10:38:07 +000087 case DataType::QASYMM8_SIGNED:
88 {
89 std::pair<int, int> bounds = get_quantized_qasymm8_signed_bounds(tensor.quantization_info(), -1.0f, 1.0f);
Pablo Tello29cab362022-03-10 17:05:34 +000090 std::uniform_int_distribution<int32_t> distribution(bounds.first, bounds.second);
Luca Foschianiee939fb2020-01-28 10:38:07 +000091
92 library->fill(tensor, distribution, 0);
93 break;
94 }
Michalis Spyroub9626ab2019-05-13 17:41:01 +010095 default:
96 ARM_COMPUTE_ERROR("DataType for Elementwise Negation Not implemented");
Michalis Spyrouaea14c62019-01-03 11:10:25 +000097 }
Michalis Spyrou7930db42018-11-22 17:36:28 +000098 }
99
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000100 TensorType compute_target(TensorShape &src_shape, DataType data_type, int axis, ReductionOperation op, QuantizationInfo q_info)
Michalis Spyrou7930db42018-11-22 17:36:28 +0000101 {
102 // Create tensors
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000103 TensorType src = create_tensor<TensorType>(src_shape, data_type, 1, q_info);
Michalis Spyrou7930db42018-11-22 17:36:28 +0000104 TensorType dst;
105
106 // Create and configure function
107 FunctionType arg_min_max_layer;
108 arg_min_max_layer.configure(&src, axis, &dst, op);
109
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100110 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
111 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Michalis Spyrou7930db42018-11-22 17:36:28 +0000112
113 // Allocate tensors
114 src.allocator()->allocate();
115 dst.allocator()->allocate();
116
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100117 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
118 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Michalis Spyrou7930db42018-11-22 17:36:28 +0000119
120 // Fill tensors
121 fill(AccessorType(src));
122
123 // Compute function
124 arg_min_max_layer.run();
125
126 return dst;
127 }
128
Sang-Hoon Parkeaa01ab2019-11-11 17:33:28 +0000129 SimpleTensor<int32_t> compute_reference(TensorShape &src_shape, DataType data_type, int axis, ReductionOperation op, QuantizationInfo q_info)
Michalis Spyrou7930db42018-11-22 17:36:28 +0000130 {
131 // Create reference
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000132 SimpleTensor<T> src{ src_shape, data_type, 1, q_info };
Michalis Spyrou7930db42018-11-22 17:36:28 +0000133
134 // Fill reference
135 fill(src);
136
Sang-Hoon Park2697fd82019-10-15 16:49:24 +0100137 TensorShape output_shape = arm_compute::misc::shape_calculator::compute_reduced_shape(src_shape, axis, false);
Sang-Hoon Parkeaa01ab2019-11-11 17:33:28 +0000138 return reference::reduction_operation<T, int32_t>(src, output_shape, axis, op);
Michalis Spyrou7930db42018-11-22 17:36:28 +0000139 }
140
Sang-Hoon Parkeaa01ab2019-11-11 17:33:28 +0000141 TensorType _target{};
142 SimpleTensor<int32_t> _reference{};
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000143};
144
145template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
146class ArgMinMaxValidationQuantizedFixture : public ArgMinMaxValidationBaseFixture<TensorType, AccessorType, FunctionType, T>
147{
148public:
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000149 void setup(const TensorShape &shape, DataType data_type, int axis, ReductionOperation op, QuantizationInfo quantization_info)
150 {
151 ArgMinMaxValidationBaseFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, op, quantization_info);
152 }
153};
154
155template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
156class ArgMinMaxValidationFixture : public ArgMinMaxValidationBaseFixture<TensorType, AccessorType, FunctionType, T>
157{
158public:
Michalis Spyrouaea14c62019-01-03 11:10:25 +0000159 void setup(const TensorShape &shape, DataType data_type, int axis, ReductionOperation op)
160 {
161 ArgMinMaxValidationBaseFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, axis, op, QuantizationInfo());
162 }
Michalis Spyrou7930db42018-11-22 17:36:28 +0000163};
164} // namespace validation
165} // namespace test
166} // namespace arm_compute
167#endif /* ARM_COMPUTE_TEST_ARG_MIN_MAX_FIXTURE */