blob: e85f81cb53be46271f64031843f33ea61987cefe [file] [log] [blame]
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001/*
Georgios Pinitas4667ddd2020-07-13 21:21:33 +01002 * Copyright (c) 2018-2020 Arm Limited.
Michalis Spyrou55b3d122018-05-09 09:59:23 +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_WIDTHCONCATENATE_LAYER_FIXTURE
25#define ARM_COMPUTE_TEST_WIDTHCONCATENATE_LAYER_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "arm_compute/core/utils/misc/ShapeCalculator.h"
30#include "tests/AssetsLibrary.h"
31#include "tests/Globals.h"
32#include "tests/IAccessor.h"
33#include "tests/framework/Asserts.h"
34#include "tests/framework/Fixture.h"
35#include "tests/validation/Helpers.h"
Pablo Tello3dd5b682019-03-04 14:14:02 +000036#include "tests/validation/reference/ConcatenateLayer.h"
Michalis Spyrou55b3d122018-05-09 09:59:23 +010037
38#include <random>
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010046template <typename TensorType, typename ITensorType, typename AccessorType, typename FunctionType, typename T, bool CI = true>
Pablo Tello3dd5b682019-03-04 14:14:02 +000047class ConcatenateLayerValidationFixture : public framework::Fixture
Michalis Spyrou55b3d122018-05-09 09:59:23 +010048{
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010049private:
Michele Di Giorgiof932d2c2020-07-06 11:27:21 +010050 using SrcITensorType = typename std::conditional<CI, const ITensorType, ITensorType>::type;
Georgios Pinitas4667ddd2020-07-13 21:21:33 +010051
Michalis Spyrou55b3d122018-05-09 09:59:23 +010052public:
53 template <typename...>
Pablo Tello3dd5b682019-03-04 14:14:02 +000054 void setup(TensorShape shape, DataType data_type, unsigned int axis)
Michalis Spyrou55b3d122018-05-09 09:59:23 +010055 {
56 // Create input shapes
57 std::mt19937 gen(library->seed());
Michele Di Giorgio27400b92018-11-01 13:44:05 +000058 std::uniform_int_distribution<> num_dis(2, 8);
Pablo Tello54e98d92019-02-05 16:16:19 +000059 std::uniform_int_distribution<> offset_dis(0, 20);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010060
Pablo Tello54e98d92019-02-05 16:16:19 +000061 const int num_tensors = num_dis(gen);
62
63 std::vector<TensorShape> shapes(num_tensors, shape);
64
65 // vector holding the quantization info:
66 // the last element is the output quantization info
67 // all other elements are the quantization info for the input tensors
68 std::vector<QuantizationInfo> qinfo(num_tensors + 1, QuantizationInfo());
69 for(auto &qi : qinfo)
70 {
71 qi = QuantizationInfo(1.f / 255.f, offset_dis(gen));
72 }
Michalis Spyrou55b3d122018-05-09 09:59:23 +010073 std::bernoulli_distribution mutate_dis(0.5f);
74 std::uniform_real_distribution<> change_dis(-0.25f, 0.f);
75
76 // Generate more shapes based on the input
77 for(auto &s : shapes)
78 {
Michalis Spyroua9c44722019-04-05 17:18:36 +010079 // Randomly change the dimension
Michalis Spyrou55b3d122018-05-09 09:59:23 +010080 if(mutate_dis(gen))
81 {
82 // Decrease the dimension by a small percentage. Don't increase
83 // as that could make tensor too large.
Pablo Tello3dd5b682019-03-04 14:14:02 +000084 s.set(axis, s[axis] + 2 * static_cast<int>(s[axis] * change_dis(gen)));
Michalis Spyrou55b3d122018-05-09 09:59:23 +010085 }
86 }
87
Pablo Tello3dd5b682019-03-04 14:14:02 +000088 _target = compute_target(shapes, qinfo, data_type, axis);
89 _reference = compute_reference(shapes, qinfo, data_type, axis);
Michalis Spyrou55b3d122018-05-09 09:59:23 +010090 }
91
92protected:
93 template <typename U>
94 void fill(U &&tensor, int i)
95 {
96 library->fill_tensor_uniform(tensor, i);
97 }
98
Pablo Tello3dd5b682019-03-04 14:14:02 +000099 TensorType compute_target(const std::vector<TensorShape> &shapes, const std::vector<QuantizationInfo> &qinfo, DataType data_type, unsigned int axis)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100100 {
Georgios Pinitas4667ddd2020-07-13 21:21:33 +0100101 std::vector<TensorType> srcs;
102 std::vector<SrcITensorType *> src_ptrs;
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100103
104 // Create tensors
105 srcs.reserve(shapes.size());
106
Pablo Tello54e98d92019-02-05 16:16:19 +0000107 for(size_t j = 0; j < shapes.size(); ++j)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100108 {
Pablo Tello54e98d92019-02-05 16:16:19 +0000109 srcs.emplace_back(create_tensor<TensorType>(shapes[j], data_type, 1, qinfo[j]));
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100110 src_ptrs.emplace_back(&srcs.back());
111 }
112
Pablo Tello3dd5b682019-03-04 14:14:02 +0000113 const TensorShape dst_shape = misc::shape_calculator::calculate_concatenate_shape(src_ptrs, axis);
114 TensorType dst = create_tensor<TensorType>(dst_shape, data_type, 1, qinfo[shapes.size()]);
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100115
116 // Create and configure function
Pablo Tello3dd5b682019-03-04 14:14:02 +0000117 FunctionType concat;
Georgios Pinitas9e4824c2019-04-12 13:15:58 +0100118 concat.configure(src_ptrs, &dst, axis);
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100119
120 for(auto &src : srcs)
121 {
122 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
123 }
124
125 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
126
127 // Allocate tensors
128 for(auto &src : srcs)
129 {
130 src.allocator()->allocate();
131 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
132 }
133
134 dst.allocator()->allocate();
135 ARM_COMPUTE_EXPECT(!dst.info()->is_resizable(), framework::LogLevel::ERRORS);
136
137 // Fill tensors
138 int i = 0;
139 for(auto &src : srcs)
140 {
141 fill(AccessorType(src), i++);
142 }
143
144 // Compute function
Pablo Tello3dd5b682019-03-04 14:14:02 +0000145 concat.run();
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100146
147 return dst;
148 }
149
Michalis Spyroua9c44722019-04-05 17:18:36 +0100150 SimpleTensor<T> compute_reference(std::vector<TensorShape> &shapes, const std::vector<QuantizationInfo> &qinfo, DataType data_type, unsigned int axis)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100151 {
152 std::vector<SimpleTensor<T>> srcs;
Michalis Spyroua9c44722019-04-05 17:18:36 +0100153 std::vector<TensorShape *> src_ptrs;
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100154
155 // Create and fill tensors
Pablo Tello54e98d92019-02-05 16:16:19 +0000156 for(size_t j = 0; j < shapes.size(); ++j)
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100157 {
Pablo Tello54e98d92019-02-05 16:16:19 +0000158 srcs.emplace_back(shapes[j], data_type, 1, qinfo[j]);
159 fill(srcs.back(), j);
Michalis Spyroua9c44722019-04-05 17:18:36 +0100160 src_ptrs.emplace_back(&shapes[j]);
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100161 }
162
Michalis Spyroua9c44722019-04-05 17:18:36 +0100163 const TensorShape dst_shape = misc::shape_calculator::calculate_concatenate_shape(src_ptrs, axis);
Pablo Tello54e98d92019-02-05 16:16:19 +0000164 SimpleTensor<T> dst{ dst_shape, data_type, 1, qinfo[shapes.size()] };
Pablo Tello3dd5b682019-03-04 14:14:02 +0000165 return reference::concatenate_layer<T>(srcs, dst, axis);
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100166 }
167
168 TensorType _target{};
169 SimpleTensor<T> _reference{};
Michalis Spyrou55b3d122018-05-09 09:59:23 +0100170};
171} // namespace validation
172} // namespace test
173} // namespace arm_compute
174#endif /* ARM_COMPUTE_TEST_WIDTHCONCATENATE_LAYER_FIXTURE */