blob: 7727340f6616b0046261dd89902cea5b5853dff8 [file] [log] [blame]
SiCong Li3eb263e2017-06-19 15:31:43 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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 */
Moritz Pflanzerfb5aabb2017-07-18 14:39:55 +010024#include "AssetsLibrary.h"
SiCong Li3eb263e2017-06-19 15:31:43 +010025#include "Globals.h"
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010026#include "NEON/Accessor.h"
SiCong Li3eb263e2017-06-19 15:31:43 +010027#include "PaddingCalculator.h"
SiCong Li3eb263e2017-06-19 15:31:43 +010028#include "TypePrinter.h"
29#include "Utils.h"
30#include "validation/Datasets.h"
31#include "validation/Reference.h"
32#include "validation/Validation.h"
33#include "validation/ValidationUserConfiguration.h"
34
35#include "arm_compute/core/Helpers.h"
36#include "arm_compute/core/Types.h"
37#include "arm_compute/runtime/NEON/functions/NEGaussian5x5.h"
38#include "arm_compute/runtime/SubTensor.h"
39#include "arm_compute/runtime/Tensor.h"
40#include "arm_compute/runtime/TensorAllocator.h"
41
42#include "boost_wrapper.h"
43
SiCong Li3eb263e2017-06-19 15:31:43 +010044#include <random>
45#include <string>
46
47using namespace arm_compute;
48using namespace arm_compute::test;
SiCong Li3eb263e2017-06-19 15:31:43 +010049using namespace arm_compute::test::validation;
50
51namespace
52{
SiCong Li7a035752017-06-28 15:27:02 +010053constexpr unsigned int filter_size = 5; /** Size of the kernel/filter in number of elements. */
54constexpr BorderSize border_size(filter_size / 2); /** Border size of the kernel/filter around its central element. */
55
SiCong Li3eb263e2017-06-19 15:31:43 +010056/** Compute Neon gaussian5x5 filter.
57 *
58 * @param[in] shape Shape of the input and output tensors.
59 * @param[in] border_mode BorderMode used by the input tensor.
60 * @param[in] constant_border_value Constant to use if @p border_mode == CONSTANT.
61 *
62 * @return Computed output tensor.
63 */
64Tensor compute_gaussian5x5(const TensorShape &shape, BorderMode border_mode, uint8_t constant_border_value)
65{
66 // Create tensors
Moritz Pflanzer94450f12017-06-30 12:48:43 +010067 Tensor src = create_tensor<Tensor>(shape, DataType::U8);
68 Tensor dst = create_tensor<Tensor>(shape, DataType::U8);
SiCong Li3eb263e2017-06-19 15:31:43 +010069
70 // Create and configure function
71 NEGaussian5x5 gaussian5x5;
72 gaussian5x5.configure(&src, &dst, border_mode, constant_border_value);
73
74 // Allocate tensors
75 src.allocator()->allocate();
76 dst.allocator()->allocate();
77
78 BOOST_TEST(!src.info()->is_resizable());
79 BOOST_TEST(!dst.info()->is_resizable());
80
81 // Fill tensors
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010082 library->fill_tensor_uniform(Accessor(src), 0);
SiCong Li3eb263e2017-06-19 15:31:43 +010083
84 // Compute function
85 gaussian5x5.run();
86
87 return dst;
88}
89} // namespace
90
91#ifndef DOXYGEN_SKIP_THIS
92BOOST_AUTO_TEST_SUITE(NEON)
93BOOST_AUTO_TEST_SUITE(Gaussian5x5)
94
95BOOST_TEST_DECORATOR(*boost::unit_test::label("precommit") * boost::unit_test::label("nightly"))
96BOOST_DATA_TEST_CASE(Configuration, (SmallShapes() + LargeShapes()) * BorderModes(), shape, border_mode)
97{
98 // Create tensors
Moritz Pflanzer94450f12017-06-30 12:48:43 +010099 Tensor src = create_tensor<Tensor>(shape, DataType::U8);
100 Tensor dst = create_tensor<Tensor>(shape, DataType::U8);
SiCong Li3eb263e2017-06-19 15:31:43 +0100101
102 BOOST_TEST(src.info()->is_resizable());
103 BOOST_TEST(dst.info()->is_resizable());
104
105 // Create and configure function
106 NEGaussian5x5 gaussian5x5;
107 gaussian5x5.configure(&src, &dst, border_mode);
108
109 // Validate valid region
110 const ValidRegion src_valid_region = shape_to_valid_region(shape);
SiCong Li7a035752017-06-28 15:27:02 +0100111 const ValidRegion dst_valid_region = shape_to_valid_region(shape, border_mode == BorderMode::UNDEFINED, border_size);
SiCong Li3eb263e2017-06-19 15:31:43 +0100112 validate(src.info()->valid_region(), src_valid_region);
113 validate(dst.info()->valid_region(), dst_valid_region);
114
115 // Validate padding
116 PaddingCalculator calculator(shape.x(), 16);
117 calculator.set_border_size(2);
118 calculator.set_border_mode(border_mode);
119
120 const PaddingSize dst_padding = calculator.required_padding();
121
122 calculator.set_processed_elements(8);
123 calculator.set_access_offset(-2);
124
125 const PaddingSize src_padding = calculator.required_padding();
126
127 validate(src.info()->padding(), src_padding);
128 validate(dst.info()->padding(), dst_padding);
129}
130
131BOOST_TEST_DECORATOR(*boost::unit_test::label("precommit"))
132BOOST_DATA_TEST_CASE(RunSmall, SmallShapes() * BorderModes(), shape, border_mode)
133{
134 std::mt19937 gen(user_config.seed.get());
135 std::uniform_int_distribution<uint8_t> distribution(0, 255);
136 const uint8_t border_value = distribution(gen);
137
138 // Compute function
139 Tensor dst = compute_gaussian5x5(shape, border_mode, border_value);
140
141 // Compute reference
142 RawTensor ref_dst = Reference::compute_reference_gaussian5x5(shape, border_mode, border_value);
143
144 // Validate output
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100145 validate(Accessor(dst), ref_dst, shape_to_valid_region(shape, border_mode == BorderMode::UNDEFINED, border_size));
SiCong Li3eb263e2017-06-19 15:31:43 +0100146}
147
148BOOST_TEST_DECORATOR(*boost::unit_test::label("nightly"))
149BOOST_DATA_TEST_CASE(RunLarge, LargeShapes() * BorderModes(), shape, border_mode)
150{
151 std::mt19937 gen(user_config.seed.get());
152 std::uniform_int_distribution<uint8_t> distribution(0, 255);
153 const uint8_t border_value = distribution(gen);
154
155 // Compute function
156 Tensor dst = compute_gaussian5x5(shape, border_mode, border_value);
157
158 // Compute reference
159 RawTensor ref_dst = Reference::compute_reference_gaussian5x5(shape, border_mode, border_value);
160
161 // Validate output
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100162 validate(Accessor(dst), ref_dst, shape_to_valid_region(shape, border_mode == BorderMode::UNDEFINED, border_size));
SiCong Li3eb263e2017-06-19 15:31:43 +0100163}
164
165BOOST_AUTO_TEST_SUITE_END()
166BOOST_AUTO_TEST_SUITE_END()
Anthony Barbierac69aa12017-07-03 17:39:37 +0100167#endif /* DOXYGEN_SKIP_THIS */