blob: 2a592b87f7266d63f41b07acf546bcdcfe9491c9 [file] [log] [blame]
Moritz Pflanzer7655a672017-09-23 11:57:33 +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 */
24#ifndef ARM_COMPUTE_TEST_SOBEL_FIXTURE
25#define ARM_COMPUTE_TEST_SOBEL_FIXTURE
26
27#include "arm_compute/core/TensorShape.h"
28#include "arm_compute/core/Types.h"
29#include "support/ToolchainSupport.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/CPP/Sobel.h"
36
37#include <memory>
38
39namespace arm_compute
40{
41class CLSobel3x3;
42class CLSobel5x5;
43class CLSobel7x7;
44class NESobel3x3;
45class NESobel5x5;
46class NESobel7x7;
47
48namespace test
49{
50namespace validation
51{
52namespace
53{
54template <typename Function>
55struct info;
56
57template <>
58struct info<NESobel3x3>
59{
60 static const Format dst_format = Format::S16;
61 static const int filter_size = 3;
62};
63
64template <>
65struct info<CLSobel3x3>
66{
67 static const Format dst_format = Format::S16;
68 static const int filter_size = 3;
69};
70
71template <>
72struct info<NESobel5x5>
73{
74 static const Format dst_format = Format::S16;
75 static const int filter_size = 5;
76};
77
78template <>
79struct info<CLSobel5x5>
80{
81 static const Format dst_format = Format::S16;
82 static const int filter_size = 5;
83};
84
85template <>
86struct info<NESobel7x7>
87{
88 static const Format dst_format = Format::S32;
89 static const int filter_size = 7;
90};
91
92template <>
93struct info<CLSobel7x7>
94{
95 static const Format dst_format = Format::S32;
96 static const int filter_size = 7;
97};
98} // namespace
99
100template <typename TensorType, typename AccessorType, typename FunctionType, typename T, typename U>
101class SobelValidationFixture : public framework::Fixture
102{
103public:
104 template <typename...>
105 void setup(TensorShape shape, BorderMode border_mode, Format format)
106 {
107 // Generate a random constant value
108 std::mt19937 gen(library->seed());
109 std::uniform_int_distribution<uint8_t> int_dist(0, 255);
110 const uint8_t constant_border_value = int_dist(gen);
111
112 _border_mode = border_mode;
113 _target = compute_target(shape, border_mode, format, constant_border_value);
114 _reference = compute_reference(shape, info<FunctionType>::filter_size, border_mode, format, constant_border_value);
115 }
116
117protected:
118 template <typename V>
119 void fill(V &&tensor)
120 {
121 library->fill_tensor_uniform(tensor, 0);
122 }
123
124 std::pair<TensorType, TensorType> compute_target(const TensorShape &shape, BorderMode border_mode, Format format, uint8_t constant_border_value)
125 {
126 // Create tensors
127 TensorType src = create_tensor<TensorType>(shape, data_type_from_format(format));
128 TensorType dst_x = create_tensor<TensorType>(shape, data_type_from_format(info<FunctionType>::dst_format));
129 TensorType dst_y = create_tensor<TensorType>(shape, data_type_from_format(info<FunctionType>::dst_format));
130
131 src.info()->set_format(format);
132 dst_x.info()->set_format(info<FunctionType>::dst_format);
133 dst_y.info()->set_format(info<FunctionType>::dst_format);
134
135 FunctionType sobel;
136 sobel.configure(&src, &dst_x, &dst_y, border_mode, constant_border_value);
137
138 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
139 ARM_COMPUTE_EXPECT(dst_x.info()->is_resizable(), framework::LogLevel::ERRORS);
140 ARM_COMPUTE_EXPECT(dst_y.info()->is_resizable(), framework::LogLevel::ERRORS);
141
142 // Allocate tensors
143 src.allocator()->allocate();
144 dst_x.allocator()->allocate();
145 dst_y.allocator()->allocate();
146
147 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
148 ARM_COMPUTE_EXPECT(!dst_x.info()->is_resizable(), framework::LogLevel::ERRORS);
149 ARM_COMPUTE_EXPECT(!dst_y.info()->is_resizable(), framework::LogLevel::ERRORS);
150
151 // Fill tensors
152 fill(AccessorType(src));
153
154 // Compute function
155 sobel.run();
156
157 return std::make_pair(std::move(dst_x), std::move(dst_y));
158 }
159
160 std::pair<SimpleTensor<U>, SimpleTensor<U>> compute_reference(const TensorShape &shape, int filter_size, BorderMode border_mode, Format format, uint8_t constant_border_value)
161 {
162 // Create reference
163 SimpleTensor<T> src{ shape, format };
164
165 // Fill reference
166 fill(src);
167
168 return reference::sobel<U>(src, filter_size, border_mode, constant_border_value);
169 }
170
171 BorderMode _border_mode{ BorderMode::UNDEFINED };
172 std::pair<TensorType, TensorType> _target{};
173 std::pair<SimpleTensor<U>, SimpleTensor<U>> _reference{};
174};
175} // namespace validation
176} // namespace test
177} // namespace arm_compute
178#endif /* ARM_COMPUTE_TEST_SOBEL_FIXTURE */