blob: 7aa178adba914827916bf4e0e6b6a3a78ba58551 [file] [log] [blame]
Abe Mbise1b993382017-12-19 13:51:59 +00001/*
2 * Copyright (c) 2017-2018 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#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/CL/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLCannyEdge.h"
28#include "tests/CL/CLAccessor.h"
29#include "tests/CL/CLArrayAccessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/BorderModeDataset.h"
32#include "tests/datasets/ImageFileDatasets.h"
33#include "tests/datasets/ShapeDatasets.h"
34#include "tests/framework/Asserts.h"
35#include "tests/framework/Macros.h"
36#include "tests/framework/datasets/Datasets.h"
37#include "tests/validation/Validation.h"
38#include "tests/validation/fixtures/CannyEdgeFixture.h"
39
40namespace arm_compute
41{
42namespace test
43{
44namespace validation
45{
46namespace
47{
48/* Allowed ratio of mismatches between target and reference (1.0 = 100%) */
49const float allowed_mismatch_ratio = 0.1f;
50
51const auto use_fp16 = framework::dataset::make("UseFP16", { false });
52
53const auto data = combine(framework::dataset::make("GradientSize", { 3, 5, 7 }),
54 combine(framework::dataset::make("Normalization", { MagnitudeType::L1NORM, MagnitudeType::L2NORM }), combine(datasets::BorderModes(), use_fp16)));
55} // namespace
56
57TEST_SUITE(CL)
58TEST_SUITE(CannyEdge)
59
60DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()), data), framework::dataset::make("Format", Format::U8)),
61 shape, gradient_size, normalization, border_mode, use_fp16, format)
62{
63 ARM_COMPUTE_UNUSED(use_fp16);
64 ARM_COMPUTE_ERROR_ON(use_fp16);
65
66 CannyEdgeParameters params = canny_edge_parameters();
67 // Convert normalisation type to integer
68 const auto norm_type = static_cast<int>(normalization) + 1;
69
70 // Create tensors
71 CLTensor src = create_tensor<CLTensor>(shape, data_type_from_format(format));
72 CLTensor dst = create_tensor<CLTensor>(shape, data_type_from_format(format));
73 src.info()->set_format(format);
74 dst.info()->set_format(format);
75
76 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
77 ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS);
78
79 // Create Canny edge configure function
80 CLCannyEdge canny_edge;
81 canny_edge.configure(&src, &dst, params.upper_thresh, params.lower_thresh, gradient_size, norm_type, border_mode, params.constant_border_value);
82
83 // Validate valid region
84 validate(src.info()->valid_region(), shape_to_valid_region(shape, (BorderMode::UNDEFINED == border_mode)));
85
86 //TODO(COMPMID-568): dst region validation fails when Shape=7x7 and GradientSize=7 and BorderMode=UNDEFINED (integer underflow)
87 if(!(shape == TensorShape{ 7u, 7u } && gradient_size == 7 && border_mode == BorderMode::UNDEFINED))
88 {
89 validate(dst.info()->valid_region(), shape_to_valid_region(shape, (BorderMode::UNDEFINED == border_mode), BorderSize(gradient_size / 2 + 1)));
90 }
91
92 // Validate padding
93 PaddingCalculator calculator(shape.x(), 1);
94 calculator.set_border_mode(border_mode);
95 calculator.set_border_size(1);
96 const PaddingSize dst_padding = calculator.required_padding();
97
98 calculator.set_border_size(gradient_size / 2);
99 calculator.set_access_offset(-gradient_size / 2);
100 calculator.set_accessed_elements(16);
101 calculator.set_processed_elements(8);
102 const PaddingSize src_padding = calculator.required_padding();
103
104 validate(src.info()->padding(), src_padding);
105 validate(dst.info()->padding(), dst_padding);
106}
107
108template <typename T>
109using CLCannyEdgeFixture = CannyEdgeValidationFixture<CLTensor, CLAccessor, CLKeyPointArray, CLCannyEdge, T>;
110
111FIXTURE_DATA_TEST_CASE(RunSmall, CLCannyEdgeFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallImageFiles(), data), framework::dataset::make("Format", Format::U8)))
112{
113 // Validate output
114 validate(CLAccessor(_target), _reference, AbsoluteTolerance<uint8_t>(0), allowed_mismatch_ratio);
115}
116
117FIXTURE_DATA_TEST_CASE(RunLarge, CLCannyEdgeFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(combine(datasets::LargeImageFiles(), data), framework::dataset::make("Format", Format::U8)))
118{
119 // Validate output
120 validate(CLAccessor(_target), _reference, AbsoluteTolerance<uint8_t>(0), allowed_mismatch_ratio);
121}
122
123TEST_SUITE_END()
124TEST_SUITE_END()
125} // namespace validation
126} // namespace test
127} // namespace arm_compute