blob: 352e215dee220eee0fa2fde136da0ec71cbd1d9f [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
Giorgio Arena33b103b2021-01-08 10:37:15 +00002 * Copyright (c) 2017-2021 Arm Limited.
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +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_SOFTMAX_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_SOFTMAX_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/runtime/Tensor.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +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/SoftmaxLayer.h"
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010036
37#include <random>
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +010045template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool IS_LOG = false>
Chunosovf450caa2017-11-08 16:09:35 +070046class SoftmaxValidationGenericFixture : public framework::Fixture
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010047{
48public:
49 template <typename...>
giuros01efbf6c82018-09-03 09:53:53 +010050 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, float beta, size_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010051 {
Chunosovf450caa2017-11-08 16:09:35 +070052 _quantization_info = quantization_info;
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010053
giuros01efbf6c82018-09-03 09:53:53 +010054 _reference = compute_reference(shape, data_type, quantization_info, beta, axis);
SiCong Li96209c72020-08-21 12:28:30 +010055 _target = compute_target(shape, data_type, quantization_info, beta, axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010056 }
57
58protected:
59 template <typename U>
60 void fill(U &&tensor)
61 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000062 if(tensor.data_type() == DataType::F32)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010063 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000064 std::uniform_real_distribution<float> distribution(-10.0f, 10.0f);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010065 library->fill(tensor, distribution, 0);
66 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +000067 else if(tensor.data_type() == DataType::F16)
68 {
Giorgio Arena33b103b2021-01-08 10:37:15 +000069 arm_compute::utils::uniform_real_distribution_16bit<half> distribution{ -10.0f, 10.0f };
Giorgio Arena4bdd1772020-12-17 16:47:07 +000070 library->fill(tensor, distribution, 0);
71 }
72 else if(!is_data_type_quantized(tensor.data_type()))
Chunosovf450caa2017-11-08 16:09:35 +070073 {
74 std::uniform_int_distribution<> distribution(0, 100);
75 library->fill(tensor, distribution, 0);
76 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +000077 else
78 {
79 library->fill_tensor_uniform(tensor, 0);
80 }
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010081 }
82
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010083 TensorType compute_target(const TensorShape &shape, DataType data_type,
Sheri Zhang1f567af2020-05-05 11:47:36 +010084 QuantizationInfo quantization_info, float beta, int32_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010085 {
86 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010087 TensorType src = create_tensor<TensorType>(shape, data_type, 1, quantization_info);
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000088 TensorType dst = create_tensor<TensorType>(shape, data_type, 1, get_softmax_output_quantization_info(data_type, IS_LOG));
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010089
90 // Create and configure function
91 FunctionType smx_layer;
giuros01efbf6c82018-09-03 09:53:53 +010092 smx_layer.configure(&src, &dst, beta, axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010093
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010094 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
95 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010096
97 // Allocate tensors
98 src.allocator()->allocate();
99 dst.allocator()->allocate();
100
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100101 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
102 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100103
104 // Fill tensors
105 fill(AccessorType(src));
106
107 // Compute function
108 smx_layer.run();
109
110 return dst;
111 }
112
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100113 SimpleTensor<T> compute_reference(const TensorShape &shape, DataType data_type,
Sheri Zhang1f567af2020-05-05 11:47:36 +0100114 QuantizationInfo quantization_info, float beta, int32_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100115 {
116 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100117 SimpleTensor<T> src{ shape, data_type, 1, quantization_info };
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100118
119 // Fill reference
120 fill(src);
121
SiCong Li96209c72020-08-21 12:28:30 +0100122 return reference::softmax_layer<T>(src, beta, axis, IS_LOG);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100123 }
124
Chunosovf450caa2017-11-08 16:09:35 +0700125 TensorType _target{};
126 SimpleTensor<T> _reference{};
Chunosovf450caa2017-11-08 16:09:35 +0700127 QuantizationInfo _quantization_info{};
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100128};
129
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100130template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool IS_LOG = false>
131class SoftmaxValidationFixture : public SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100132{
133public:
134 template <typename...>
giuros01efbf6c82018-09-03 09:53:53 +0100135 void setup(TensorShape shape, DataType data_type, float beta, size_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100136 {
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100137 SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>::setup(shape,
138 data_type,
139 QuantizationInfo(),
140 beta,
141 axis);
Chunosovf450caa2017-11-08 16:09:35 +0700142 }
143};
144
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100145template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool IS_LOG = false>
146class SoftmaxValidationQuantizedFixture : public SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>
Chunosovf450caa2017-11-08 16:09:35 +0700147{
148public:
149 template <typename...>
giuros01efbf6c82018-09-03 09:53:53 +0100150 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, float beta, size_t axis)
Chunosovf450caa2017-11-08 16:09:35 +0700151 {
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100152 SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>::setup(shape,
153 data_type,
154 quantization_info,
155 beta,
156 axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100157 }
158};
SiCong Li96209c72020-08-21 12:28:30 +0100159
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100160} // namespace validation
161} // namespace test
162} // namespace arm_compute
163#endif /* ARM_COMPUTE_TEST_SOFTMAX_LAYER_FIXTURE */