blob: 1e77a0c8dd25af5151f408bf3a23ed486fa55a02 [file] [log] [blame]
Giorgio Arena93a690e2017-08-01 16:09:33 +01001/*
Georgios Pinitasd05dce42018-01-22 16:29:17 +00002 * Copyright (c) 2017-2018 ARM Limited.
Giorgio Arena93a690e2017-08-01 16:09:33 +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_DEPTHWISE_CONVOLUTION_DATASET
25#define ARM_COMPUTE_TEST_DEPTHWISE_CONVOLUTION_DATASET
26
Anthony Barbier2a07e182017-08-04 18:20:27 +010027#include "utils/TypePrinter.h"
Giorgio Arena93a690e2017-08-01 16:09:33 +010028
29#include "arm_compute/core/TensorShape.h"
30#include "arm_compute/core/Types.h"
31
32namespace arm_compute
33{
34namespace test
35{
36namespace datasets
37{
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000038class DepthwiseConvolutionLayerDataset
Giorgio Arena93a690e2017-08-01 16:09:33 +010039{
40public:
Pablo Tello941cd702017-12-12 14:35:00 +000041 using type = std::tuple<TensorShape, TensorShape, TensorShape, PadStrideInfo>;
Giorgio Arena93a690e2017-08-01 16:09:33 +010042
43 struct iterator
44 {
45 iterator(std::vector<TensorShape>::const_iterator src_it,
46 std::vector<TensorShape>::const_iterator weights_it,
47 std::vector<TensorShape>::const_iterator dst_it,
48 std::vector<PadStrideInfo>::const_iterator infos_it)
49 : _src_it{ std::move(src_it) },
50 _weights_it{ std::move(weights_it) },
51 _dst_it{ std::move(dst_it) },
52 _infos_it{ std::move(infos_it) }
53 {
54 }
55
56 std::string description() const
57 {
58 std::stringstream description;
59 description << "In=" << *_src_it << ":";
60 description << "Weights=" << *_weights_it << ":";
61 description << "Out=" << *_dst_it << ":";
62 description << "Info=" << *_infos_it;
63 return description.str();
64 }
65
Giorgio Arena04a8f8c2017-11-23 11:45:24 +000066 DepthwiseConvolutionLayerDataset::type operator*() const
Giorgio Arena93a690e2017-08-01 16:09:33 +010067 {
Pablo Tello941cd702017-12-12 14:35:00 +000068 return std::make_tuple(*_src_it, *_weights_it, *_dst_it, *_infos_it);
Giorgio Arena93a690e2017-08-01 16:09:33 +010069 }
70
71 iterator &operator++()
72 {
73 ++_src_it;
74 ++_weights_it;
75 ++_dst_it;
76 ++_infos_it;
77
78 return *this;
79 }
80
81 private:
82 std::vector<TensorShape>::const_iterator _src_it;
83 std::vector<TensorShape>::const_iterator _weights_it;
84 std::vector<TensorShape>::const_iterator _dst_it;
85 std::vector<PadStrideInfo>::const_iterator _infos_it;
86 };
87
88 iterator begin() const
89 {
Pablo Tello941cd702017-12-12 14:35:00 +000090 return iterator(_src_shapes.begin(), _weight_shapes.begin(), _dst_shapes.begin(), _infos.begin());
Giorgio Arena93a690e2017-08-01 16:09:33 +010091 }
92
93 int size() const
94 {
Pablo Tello941cd702017-12-12 14:35:00 +000095 return std::min(_src_shapes.size(), std::min(_weight_shapes.size(), std::min(_dst_shapes.size(), _infos.size())));
Giorgio Arena93a690e2017-08-01 16:09:33 +010096 }
97
Pablo Tello941cd702017-12-12 14:35:00 +000098 void add_config(TensorShape src, TensorShape weights, TensorShape dst, PadStrideInfo info)
Giorgio Arena93a690e2017-08-01 16:09:33 +010099 {
100 _src_shapes.emplace_back(std::move(src));
101 _weight_shapes.emplace_back(std::move(weights));
102 _dst_shapes.emplace_back(std::move(dst));
103 _infos.emplace_back(std::move(info));
104 }
105
106protected:
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000107 DepthwiseConvolutionLayerDataset() = default;
108 DepthwiseConvolutionLayerDataset(DepthwiseConvolutionLayerDataset &&) = default;
Giorgio Arena93a690e2017-08-01 16:09:33 +0100109
110private:
111 std::vector<TensorShape> _src_shapes{};
112 std::vector<TensorShape> _weight_shapes{};
113 std::vector<TensorShape> _dst_shapes{};
114 std::vector<PadStrideInfo> _infos{};
115};
Alex Gildayc357c472018-03-21 13:54:09 +0000116
117/** Dataset containing small, generic depthwise convolution shapes. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000118class SmallDepthwiseConvolutionLayerDataset final : public DepthwiseConvolutionLayerDataset
Giorgio Arena9fe41442017-08-23 16:36:24 +0100119{
120public:
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000121 SmallDepthwiseConvolutionLayerDataset()
Giorgio Arena9fe41442017-08-23 16:36:24 +0100122 {
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000123 add_config(TensorShape(7U, 7U, 1U), TensorShape(3U, 3U, 1U), TensorShape(5U, 5U, 1U), PadStrideInfo(1, 1, 0, 0));
Pablo Tello941cd702017-12-12 14:35:00 +0000124 add_config(TensorShape(23U, 27U, 5U), TensorShape(3U, 5U, 5U), TensorShape(11U, 23U, 5U), PadStrideInfo(2, 1, 0, 0));
125 add_config(TensorShape(33U, 27U, 7U), TensorShape(7U, 3U, 7U), TensorShape(10U, 13U, 7U), PadStrideInfo(3, 2, 1, 0));
126 add_config(TensorShape(33U, 27U, 11U), TensorShape(3U, 3U, 11U), TensorShape(31U, 14U, 11U), PadStrideInfo(1, 2, 0, 1));
127 add_config(TensorShape(17U, 31U, 2U), TensorShape(5U, 9U, 2U), TensorShape(15U, 13U, 2U), PadStrideInfo(1, 2, 1, 1));
128 add_config(TensorShape(23U, 27U, 5U), TensorShape(11U, 3U, 5U), TensorShape(13U, 13U, 5U), PadStrideInfo(1, 2, 0, 0));
129 add_config(TensorShape(17U, 31U, 2U, 3U), TensorShape(5U, 9U, 2U), TensorShape(15U, 13U, 2U, 3U), PadStrideInfo(1, 2, 1, 1));
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +0100130 // Asymmetric padding
Pablo Tello941cd702017-12-12 14:35:00 +0000131 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(11U, 12U, 7U), PadStrideInfo(3, 2, 1, 1, 2, 0, DimensionRoundingType::FLOOR));
132 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(11U, 12U, 7U), PadStrideInfo(3, 2, 1, 1, 0, 2, DimensionRoundingType::FLOOR));
133 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(11U, 12U, 7U), PadStrideInfo(3, 2, 2, 1, 2, 0, DimensionRoundingType::FLOOR));
134 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(11U, 12U, 7U), PadStrideInfo(3, 2, 1, 3, 0, 2, DimensionRoundingType::FLOOR));
135 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(10U, 11U, 7U), PadStrideInfo(3, 2, 1, 0, 1, 0, DimensionRoundingType::FLOOR));
136 add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 7U, 7U), TensorShape(10U, 11U, 7U), PadStrideInfo(3, 2, 0, 1, 0, 1, DimensionRoundingType::FLOOR));
Giorgio Arena9fe41442017-08-23 16:36:24 +0100137 }
138};
139
Alex Gildayc357c472018-03-21 13:54:09 +0000140/** Dataset containing large, generic depthwise convolution shapes. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000141class LargeDepthwiseConvolutionLayerDataset final : public DepthwiseConvolutionLayerDataset
Giorgio Arena9fe41442017-08-23 16:36:24 +0100142{
143public:
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000144 LargeDepthwiseConvolutionLayerDataset()
Giorgio Arena9fe41442017-08-23 16:36:24 +0100145 {
Pablo Tello941cd702017-12-12 14:35:00 +0000146 add_config(TensorShape(233U, 277U, 55U), TensorShape(3U, 3U, 55U), TensorShape(116U, 275U, 55U), PadStrideInfo(2, 1, 0, 0));
147 add_config(TensorShape(333U, 277U, 77U), TensorShape(3U, 3U, 77U), TensorShape(111U, 138U, 77U), PadStrideInfo(3, 2, 1, 0));
148 add_config(TensorShape(177U, 311U, 22U), TensorShape(3U, 3U, 22U), TensorShape(177U, 156U, 22U), PadStrideInfo(1, 2, 1, 1));
149 add_config(TensorShape(233U, 277U, 55U), TensorShape(3U, 3U, 55U), TensorShape(231U, 138U, 55U), PadStrideInfo(1, 2, 0, 0));
150 add_config(TensorShape(333U, 277U, 77U), TensorShape(3U, 3U, 77U), TensorShape(166U, 93U, 77U), PadStrideInfo(2, 3, 0, 1));
151 add_config(TensorShape(177U, 311U, 22U), TensorShape(3U, 3U, 22U), TensorShape(89U, 311U, 22U), PadStrideInfo(2, 1, 1, 1));
Giorgio Arena9fe41442017-08-23 16:36:24 +0100152 }
153};
154
Alex Gildayc357c472018-03-21 13:54:09 +0000155/** Dataset containing small, 3x3 depthwise convolution shapes. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000156class SmallDepthwiseConvolutionLayerDataset3x3 final : public DepthwiseConvolutionLayerDataset
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100157{
158public:
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000159 SmallDepthwiseConvolutionLayerDataset3x3()
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100160 {
Georgios Pinitas69af6cf2018-02-14 19:23:44 +0000161 add_config(TensorShape(3U, 3U, 2U), TensorShape(3U, 3U, 2U), TensorShape(1U, 1U, 2U), PadStrideInfo(1, 1, 0, 0));
Pablo Tello941cd702017-12-12 14:35:00 +0000162 add_config(TensorShape(7U, 7U, 3U, 2U), TensorShape(3U, 3U, 3U), TensorShape(5U, 5U, 3U, 2U), PadStrideInfo(1, 1, 0, 0));
Pablo Tello941cd702017-12-12 14:35:00 +0000163 add_config(TensorShape(21U, 31U, 9U, 4U), TensorShape(3U, 3U, 9U), TensorShape(21U, 15U, 9U, 4U), PadStrideInfo(1, 2, 1, 0));
164 add_config(TensorShape(33U, 27U, 11U, 3U), TensorShape(3U, 3U, 11U), TensorShape(31U, 14U, 11U, 3U), PadStrideInfo(1, 2, 0, 1));
Georgios Pinitas15997872018-02-19 13:58:22 +0000165 // Asymmetric padding
166 add_config(TensorShape(33U, 27U, 11U), TensorShape(3U, 3U, 11U), TensorShape(16U, 13U, 11U), PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::FLOOR));
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000167 }
168};
169
170class SmallDepthwiseConvolutionLayerDataset3x3NCHW final : public DepthwiseConvolutionLayerDataset
171{
172public:
173 SmallDepthwiseConvolutionLayerDataset3x3NCHW()
174 {
175 add_config(TensorShape(33U, 27U, 11U), TensorShape(3U, 3U, 11U), TensorShape(11U, 14U, 11U), PadStrideInfo(3, 2, 1, 1));
176 // Asymmetric padding
Georgios Pinitas15997872018-02-19 13:58:22 +0000177 add_config(TensorShape(33U, 27U, 11U), TensorShape(3U, 3U, 11U), TensorShape(18U, 14U, 11U), PadStrideInfo(2, 2, 3, 1, 2, 1, DimensionRoundingType::FLOOR));
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100178 }
179};
180
Alex Gildayc357c472018-03-21 13:54:09 +0000181/** Dataset containing large, 3x3 depthwise convolution shapes. */
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000182class LargeDepthwiseConvolutionLayerDataset3x3 final : public DepthwiseConvolutionLayerDataset
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100183{
184public:
Giorgio Arena04a8f8c2017-11-23 11:45:24 +0000185 LargeDepthwiseConvolutionLayerDataset3x3()
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100186 {
Pablo Tello941cd702017-12-12 14:35:00 +0000187 add_config(TensorShape(233U, 277U, 55U, 3U), TensorShape(3U, 3U, 55U), TensorShape(116U, 275U, 55U, 3U), PadStrideInfo(2, 1, 0, 0));
Pablo Tello941cd702017-12-12 14:35:00 +0000188 add_config(TensorShape(177U, 311U, 22U), TensorShape(3U, 3U, 22U), TensorShape(177U, 156U, 22U), PadStrideInfo(1, 2, 1, 1));
189 add_config(TensorShape(233U, 277U, 55U), TensorShape(3U, 3U, 55U), TensorShape(231U, 138U, 55U), PadStrideInfo(1, 2, 0, 0));
190 add_config(TensorShape(333U, 277U, 77U, 5U), TensorShape(3U, 3U, 77U), TensorShape(166U, 93U, 77U, 5U), PadStrideInfo(2, 3, 0, 1));
191 add_config(TensorShape(177U, 311U, 22U), TensorShape(3U, 3U, 22U), TensorShape(89U, 311U, 22U), PadStrideInfo(2, 1, 1, 1));
Georgios Pinitasc26ecf82017-09-22 13:44:05 +0100192 }
193};
Alex Gildayc357c472018-03-21 13:54:09 +0000194
195/** Dataset containing optimized, 3x3 depthwise convolution shapes. */
Georgios Pinitas4074c992018-01-30 18:13:46 +0000196class OptimizedDepthwiseConvolutionLayerDataset3x3 final : public DepthwiseConvolutionLayerDataset
197{
198public:
199 OptimizedDepthwiseConvolutionLayerDataset3x3()
200 {
201 // Stride 1
202 add_config(TensorShape(7U, 7U, 16U), TensorShape(3U, 3U, 16U), TensorShape(5U, 5U, 16U), PadStrideInfo(1, 1, 0, 0, DimensionRoundingType::CEIL));
203 add_config(TensorShape(7U, 7U, 16U), TensorShape(3U, 3U, 16U), TensorShape(7U, 7U, 16U), PadStrideInfo(1, 1, 1, 1, DimensionRoundingType::CEIL));
204 add_config(TensorShape(28U, 28U, 16U), TensorShape(3U, 3U, 16U), TensorShape(26U, 26U, 16U), PadStrideInfo(1, 1, 0, 0, DimensionRoundingType::CEIL));
205 add_config(TensorShape(28U, 28U, 16U), TensorShape(3U, 3U, 16U), TensorShape(28U, 28U, 16U), PadStrideInfo(1, 1, 1, 1, DimensionRoundingType::CEIL));
206 // Stride 2
207 add_config(TensorShape(7U, 7U, 32U), TensorShape(3U, 3U, 32U), TensorShape(3U, 3U, 32U), PadStrideInfo(2, 2, 0, 0, DimensionRoundingType::CEIL));
208 add_config(TensorShape(7U, 7U, 32U), TensorShape(3U, 3U, 32U), TensorShape(4U, 4U, 32U), PadStrideInfo(2, 2, 1, 1, 1, 1, DimensionRoundingType::CEIL));
209 add_config(TensorShape(8U, 8U, 32U), TensorShape(3U, 3U, 32U), TensorShape(3U, 3U, 32U), PadStrideInfo(2, 2, 0, 0, DimensionRoundingType::CEIL));
210 add_config(TensorShape(8U, 8U, 32U), TensorShape(3U, 3U, 32U), TensorShape(4U, 4U, 32U), PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL));
Georgios Pinitasbe0ae932018-03-13 13:08:12 +0000211 add_config(TensorShape(64U, 64U, 128U), TensorShape(3U, 3U, 128U), TensorShape(32U, 32U, 128U), PadStrideInfo(2, 2, 0, 1, 0, 1, DimensionRoundingType::CEIL));
Georgios Pinitas4074c992018-01-30 18:13:46 +0000212 }
213};
Giorgio Arena93a690e2017-08-01 16:09:33 +0100214} // namespace datasets
215} // namespace test
216} // namespace arm_compute
217#endif /* ARM_COMPUTE_TEST_DEPTHWISE_CONVOLUTION_DATASET */