blob: f075a69c40247494d236ce88e6f3f8239aba8f4c [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"
Georgios Pinitas5a7e7762017-12-01 16:27:29 +000035#include "tests/validation/reference/Sobel.h"
Moritz Pflanzer7655a672017-09-23 11:57:33 +010036
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...>
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000105 void setup(TensorShape shape, BorderMode border_mode, Format format, GradientDimension gradient_dimension)
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100106 {
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;
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000113 _target = compute_target(shape, border_mode, format, constant_border_value, gradient_dimension);
114 _reference = compute_reference(shape, info<FunctionType>::filter_size, border_mode, format, constant_border_value, gradient_dimension);
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100115 }
116
117protected:
118 template <typename V>
119 void fill(V &&tensor)
120 {
121 library->fill_tensor_uniform(tensor, 0);
122 }
123
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000124 std::pair<TensorType, TensorType> compute_target(const TensorShape &shape, BorderMode border_mode, Format format, uint8_t constant_border_value, GradientDimension gradient_dimension)
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100125 {
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;
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000136
137 switch(gradient_dimension)
138 {
139 case GradientDimension::GRAD_X:
140 sobel.configure(&src, &dst_x, nullptr, border_mode, constant_border_value);
141 break;
142 case GradientDimension::GRAD_Y:
143 sobel.configure(&src, nullptr, &dst_y, border_mode, constant_border_value);
144 break;
145 case GradientDimension::GRAD_XY:
146 sobel.configure(&src, &dst_x, &dst_y, border_mode, constant_border_value);
147 break;
148 default:
149 ARM_COMPUTE_ERROR("Gradient dimension not supported");
150 }
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100151
152 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
153 ARM_COMPUTE_EXPECT(dst_x.info()->is_resizable(), framework::LogLevel::ERRORS);
154 ARM_COMPUTE_EXPECT(dst_y.info()->is_resizable(), framework::LogLevel::ERRORS);
155
156 // Allocate tensors
157 src.allocator()->allocate();
158 dst_x.allocator()->allocate();
159 dst_y.allocator()->allocate();
160
161 ARM_COMPUTE_EXPECT(!src.info()->is_resizable(), framework::LogLevel::ERRORS);
162 ARM_COMPUTE_EXPECT(!dst_x.info()->is_resizable(), framework::LogLevel::ERRORS);
163 ARM_COMPUTE_EXPECT(!dst_y.info()->is_resizable(), framework::LogLevel::ERRORS);
164
165 // Fill tensors
166 fill(AccessorType(src));
167
168 // Compute function
169 sobel.run();
170
171 return std::make_pair(std::move(dst_x), std::move(dst_y));
172 }
173
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000174 std::pair<SimpleTensor<U>, SimpleTensor<U>> compute_reference(const TensorShape &shape, int filter_size, BorderMode border_mode, Format format, uint8_t constant_border_value,
175 GradientDimension gradient_dimension)
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100176 {
177 // Create reference
178 SimpleTensor<T> src{ shape, format };
179
180 // Fill reference
181 fill(src);
182
Isabella Gottardi43ce8982017-11-08 11:13:23 +0000183 return reference::sobel<U>(src, filter_size, border_mode, constant_border_value, gradient_dimension);
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100184 }
185
186 BorderMode _border_mode{ BorderMode::UNDEFINED };
187 std::pair<TensorType, TensorType> _target{};
188 std::pair<SimpleTensor<U>, SimpleTensor<U>> _reference{};
189};
190} // namespace validation
191} // namespace test
192} // namespace arm_compute
193#endif /* ARM_COMPUTE_TEST_SOBEL_FIXTURE */