blob: 3f6d5b3cb358d79c516eb4c90c7e5d57babc05a2 [file] [log] [blame]
Michalis Spyroue9362622018-11-23 17:41:37 +00001/*
Usama Ariff6e475c2019-05-10 12:06:28 +01002 * Copyright (c) 2018-2019 ARM Limited.
Michalis Spyroue9362622018-11-23 17:41:37 +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_ELEMENTWISE_UNARY_FIXTURE
25#define ARM_COMPUTE_TEST_ELEMENTWISE_UNARY_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "tests/AssetsLibrary.h"
30#include "tests/Globals.h"
31#include "tests/IAccessor.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Fixture.h"
34#include "tests/validation/reference/ElementWiseUnary.h"
35
36namespace arm_compute
37{
38namespace test
39{
40namespace validation
41{
42template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
43class ElementWiseUnaryValidationFixture : public framework::Fixture
44{
45public:
46 template <typename...>
Manuel Bottinied753262019-05-15 15:30:47 +010047 void setup(TensorShape input_shape, DataType input_data_type, ElementWiseUnary op)
Michalis Spyroue9362622018-11-23 17:41:37 +000048 {
49 _op = op;
Manuel Bottinied753262019-05-15 15:30:47 +010050 _target = compute_target(input_shape, input_data_type);
51 _reference = compute_reference(input_shape, input_data_type);
Michalis Spyroue9362622018-11-23 17:41:37 +000052 }
53
54protected:
55 template <typename U>
Usama Ariff6e475c2019-05-10 12:06:28 +010056 void fill(U &&tensor, int i, DataType data_type)
Michalis Spyroue9362622018-11-23 17:41:37 +000057 {
58 switch(_op)
59 {
60 case ElementWiseUnary::EXP:
61 {
62 std::uniform_real_distribution<> distribution(-1.0f, 1.0f);
63 library->fill(tensor, distribution, i);
64 break;
65 }
66 case ElementWiseUnary::RSQRT:
67 {
68 std::uniform_real_distribution<> distribution(1.0f, 2.0f);
69 library->fill(tensor, distribution, i);
70 break;
71 }
Manuel Bottini6ac59922019-05-15 14:06:02 +010072 case ElementWiseUnary::ABS:
Usama Ariff6e475c2019-05-10 12:06:28 +010073 case ElementWiseUnary::NEG:
74 {
75 switch(data_type)
76 {
77 case DataType::F32:
78 case DataType::F16:
79 {
80 std::uniform_real_distribution<> distribution(-2.0f, 2.0f);
81 library->fill(tensor, distribution, i);
82 break;
83 }
84 case DataType::S32:
85 {
86 std::uniform_int_distribution<int32_t> distribution(-100, 100);
87 library->fill(tensor, distribution, i);
88 break;
89 }
90 default:
91 ARM_COMPUTE_ERROR("DataType for Elementwise Negation Not implemented");
92 }
93 break;
94 }
Usama Arifc255aa72019-05-13 16:26:29 +010095 case ElementWiseUnary::LOG:
96 {
97 std::uniform_real_distribution<> distribution(0.0000001f, 100.0f);
98 library->fill(tensor, distribution, i);
99 break;
100 }
Michalis Spyrou0af44182019-05-17 14:04:47 +0100101 case ElementWiseUnary::SIN:
102 {
Manuel Bottinied753262019-05-15 15:30:47 +0100103 std::uniform_real_distribution<> distribution(-100.00f, 100.00f);
Michalis Spyrou0af44182019-05-17 14:04:47 +0100104 library->fill(tensor, distribution, i);
105 break;
106 }
Usama Arif0a5a57a2019-05-23 14:20:33 +0100107 case ElementWiseUnary::ROUND:
108 {
109 std::uniform_real_distribution<> distribution(100.0f, -100.0f);
110 library->fill(tensor, distribution, i);
111 break;
112 }
Michalis Spyroue9362622018-11-23 17:41:37 +0000113 default:
114 ARM_COMPUTE_ERROR("Not implemented");
115 }
116 }
117
118 TensorType compute_target(const TensorShape &shape, DataType data_type)
119 {
120 // Create tensors
121 TensorType src = create_tensor<TensorType>(shape, data_type);
122 TensorType dst = create_tensor<TensorType>(shape, data_type);
123
124 // Create and configure function
125 FunctionType elwiseunary_layer;
126
127 elwiseunary_layer.configure(&src, &dst);
128
129 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
130 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
131
132 // Allocate tensors
133 src.allocator()->allocate();
134 dst.allocator()->allocate();
135 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
136 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
137
138 // Fill tensors
Usama Ariff6e475c2019-05-10 12:06:28 +0100139 fill(AccessorType(src), 0, data_type);
Michalis Spyroue9362622018-11-23 17:41:37 +0000140
141 // Compute function
142 elwiseunary_layer.run();
143
144 return dst;
145 }
146
147 SimpleTensor<T> compute_reference(const TensorShape &shape, DataType data_type)
148 {
149 // Create reference
150 SimpleTensor<T> src{ shape, data_type };
151
152 // Fill reference
Usama Ariff6e475c2019-05-10 12:06:28 +0100153 fill(src, 0, data_type);
Michalis Spyroue9362622018-11-23 17:41:37 +0000154
155 return reference::elementwise_unary<T>(src, _op);
156 }
157
158 TensorType _target{};
159 SimpleTensor<T> _reference{};
160 ElementWiseUnary _op{};
161};
162
163template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
164class RsqrtValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
165{
166public:
167 template <typename...>
168 void setup(const TensorShape &shape, DataType data_type)
169 {
170 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::RSQRT);
171 }
172};
173
174template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
175class ExpValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
176{
177public:
178 template <typename...>
179 void setup(const TensorShape &shape, DataType data_type)
180 {
181 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::EXP);
182 }
183};
Usama Ariff6e475c2019-05-10 12:06:28 +0100184
185template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
186class NegValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
187{
188public:
189 template <typename...>
190 void setup(const TensorShape &shape, DataType data_type)
191 {
192 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::NEG);
193 }
194};
Usama Arifc255aa72019-05-13 16:26:29 +0100195
196template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
197class LogValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
198{
199public:
200 template <typename...>
201 void setup(const TensorShape &shape, DataType data_type)
202 {
203 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::LOG);
204 }
205};
Manuel Bottini6ac59922019-05-15 14:06:02 +0100206
207template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
208class AbsValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
209{
210public:
211 template <typename...>
212 void setup(const TensorShape &shape, DataType data_type)
213 {
214 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::ABS);
215 }
216};
Michalis Spyrou0af44182019-05-17 14:04:47 +0100217
218template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
219class SinValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
220{
221public:
222 template <typename...>
223 void setup(const TensorShape &shape, DataType data_type)
224 {
225 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::SIN);
226 }
227};
Usama Arif0a5a57a2019-05-23 14:20:33 +0100228
229template <typename TensorType, typename AccessorType, typename FunctionType, typename T>
230class RoundValidationFixture : public ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>
231{
232public:
233 template <typename...>
234 void setup(const TensorShape &shape, DataType data_type)
235 {
236 ElementWiseUnaryValidationFixture<TensorType, AccessorType, FunctionType, T>::setup(shape, data_type, ElementWiseUnary::ROUND);
237 }
238};
Michalis Spyroue9362622018-11-23 17:41:37 +0000239} // namespace validation
240} // namespace test
241} // namespace arm_compute
242#endif /* ARM_COMPUTE_TEST_ELEMENTWISE_UNARY_FIXTURE */