blob: f4bf8df9c0c378e0847c8fb97bec2d46322eac04 [file] [log] [blame]
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +01001/*
Matthew Bentham945b8da2023-07-12 11:54:59 +00002 * Copyright (c) 2017-2021, 2023 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:
giuros01efbf6c82018-09-03 09:53:53 +010049 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, float beta, size_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010050 {
Chunosovf450caa2017-11-08 16:09:35 +070051 _quantization_info = quantization_info;
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010052
giuros01efbf6c82018-09-03 09:53:53 +010053 _reference = compute_reference(shape, data_type, quantization_info, beta, axis);
SiCong Li96209c72020-08-21 12:28:30 +010054 _target = compute_target(shape, data_type, quantization_info, beta, axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +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)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010062 {
Giorgio Arena4bdd1772020-12-17 16:47:07 +000063 std::uniform_real_distribution<float> distribution(-10.0f, 10.0f);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +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{ -10.0f, 10.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()))
Chunosovf450caa2017-11-08 16:09:35 +070072 {
73 std::uniform_int_distribution<> distribution(0, 100);
74 library->fill(tensor, distribution, 0);
75 }
Giorgio Arena4bdd1772020-12-17 16:47:07 +000076 else
77 {
78 library->fill_tensor_uniform(tensor, 0);
79 }
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010080 }
81
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010082 TensorType compute_target(const TensorShape &shape, DataType data_type,
Sheri Zhang1f567af2020-05-05 11:47:36 +010083 QuantizationInfo quantization_info, float beta, int32_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010084 {
85 // Create tensors
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010086 TensorType src = create_tensor<TensorType>(shape, data_type, 1, quantization_info);
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000087 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 +010088
89 // Create and configure function
90 FunctionType smx_layer;
giuros01efbf6c82018-09-03 09:53:53 +010091 smx_layer.configure(&src, &dst, beta, axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010092
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +010093 ARM_COMPUTE_ASSERT(src.info()->is_resizable());
94 ARM_COMPUTE_ASSERT(dst.info()->is_resizable());
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +010095
96 // Allocate tensors
97 src.allocator()->allocate();
98 dst.allocator()->allocate();
99
Michele Di Giorgio4fc10b32021-04-30 18:30:41 +0100100 ARM_COMPUTE_ASSERT(!src.info()->is_resizable());
101 ARM_COMPUTE_ASSERT(!dst.info()->is_resizable());
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100102
103 // Fill tensors
104 fill(AccessorType(src));
105
106 // Compute function
107 smx_layer.run();
108
109 return dst;
110 }
111
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100112 SimpleTensor<T> compute_reference(const TensorShape &shape, DataType data_type,
Sheri Zhang1f567af2020-05-05 11:47:36 +0100113 QuantizationInfo quantization_info, float beta, int32_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100114 {
115 // Create reference
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +0100116 SimpleTensor<T> src{ shape, data_type, 1, quantization_info };
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100117
118 // Fill reference
119 fill(src);
120
SiCong Li96209c72020-08-21 12:28:30 +0100121 return reference::softmax_layer<T>(src, beta, axis, IS_LOG);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100122 }
123
Chunosovf450caa2017-11-08 16:09:35 +0700124 TensorType _target{};
125 SimpleTensor<T> _reference{};
Chunosovf450caa2017-11-08 16:09:35 +0700126 QuantizationInfo _quantization_info{};
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100127};
128
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100129template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool IS_LOG = false>
130class SoftmaxValidationFixture : public SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100131{
132public:
giuros01efbf6c82018-09-03 09:53:53 +0100133 void setup(TensorShape shape, DataType data_type, float beta, size_t axis)
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100134 {
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100135 SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>::setup(shape,
136 data_type,
137 QuantizationInfo(),
138 beta,
139 axis);
Chunosovf450caa2017-11-08 16:09:35 +0700140 }
141};
142
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100143template <typename TensorType, typename AccessorType, typename FunctionType, typename T, bool IS_LOG = false>
144class SoftmaxValidationQuantizedFixture : public SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>
Chunosovf450caa2017-11-08 16:09:35 +0700145{
146public:
giuros01efbf6c82018-09-03 09:53:53 +0100147 void setup(TensorShape shape, DataType data_type, QuantizationInfo quantization_info, float beta, size_t axis)
Chunosovf450caa2017-11-08 16:09:35 +0700148 {
Sang-Hoon Parkd24affe2019-10-08 18:07:23 +0100149 SoftmaxValidationGenericFixture<TensorType, AccessorType, FunctionType, T, IS_LOG>::setup(shape,
150 data_type,
151 quantization_info,
152 beta,
153 axis);
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100154 }
155};
SiCong Li96209c72020-08-21 12:28:30 +0100156
Moritz Pflanzerf6ad98a2017-07-21 17:19:58 +0100157} // namespace validation
158} // namespace test
159} // namespace arm_compute
160#endif /* ARM_COMPUTE_TEST_SOFTMAX_LAYER_FIXTURE */