blob: 928990b2b4c7f86bb6af33f71ef166503a1335a5 [file] [log] [blame]
John Richardsonb482ce12017-09-18 12:44:01 +01001/*
Pablo Tello29cab362022-03-10 17:05:34 +00002 * Copyright (c) 2017-2020, 2022 Arm Limited.
John Richardsonb482ce12017-09-18 12:44:01 +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 */
Michalis Spyrouebcebf12020-10-21 00:04:14 +010024#include "src/core/NEON/kernels/NEFillBorderKernel.h"
John Richardsonb482ce12017-09-18 12:44:01 +010025#include "tests/Globals.h"
26#include "tests/NEON/Accessor.h"
27#include "tests/datasets/BorderModeDataset.h"
28#include "tests/datasets/ShapeDatasets.h"
29#include "tests/framework/Macros.h"
30#include "tests/framework/datasets/Datasets.h"
31#include "tests/validation/Validation.h"
32
33namespace arm_compute
34{
35namespace test
36{
37namespace validation
38{
39TEST_SUITE(NEON)
40TEST_SUITE(FillBorder)
41
42// *INDENT-OFF*
43// clang-format off
44const auto PaddingSizesDataset = concat(concat(
45 framework::dataset::make("PaddingSize", PaddingSize{ 0 }),
46 framework::dataset::make("PaddingSize", PaddingSize{ 1, 0, 1, 2 })),
47 framework::dataset::make("PaddingSize", PaddingSize{ 10 }));
48
49const auto BorderSizesDataset = framework::dataset::make("BorderSize", 0, 6);
50
51DATA_TEST_CASE(FillBorder, framework::DatasetMode::ALL, combine(combine(combine(combine(
52 datasets::SmallShapes(),
53 datasets::BorderModes()),
54 BorderSizesDataset),
55 PaddingSizesDataset),
56 framework::dataset::make("DataType", DataType::U8)),
57 shape, border_mode, size, padding, data_type)
58// clang-format on
59// *INDENT-ON*
60{
61 BorderSize border_size{ static_cast<unsigned int>(size) };
62
Pablo Tello29cab362022-03-10 17:05:34 +000063 std::mt19937 generator(library->seed());
64 std::uniform_int_distribution<uint32_t> distribution_u8(0, 255);
65 const uint8_t border_value = distribution_u8(generator);
66 const uint8_t tensor_value = distribution_u8(generator);
John Richardsonb482ce12017-09-18 12:44:01 +010067
68 // Create tensors
69 Tensor src = create_tensor<Tensor>(shape, data_type);
70
71 src.info()->extend_padding(padding);
72
73 // Allocate tensor
74 src.allocator()->allocate();
75
76 // Check padding is as required
77 validate(src.info()->padding(), padding);
78
79 // Fill tensor with constant value
Pablo Tello29cab362022-03-10 17:05:34 +000080 std::uniform_int_distribution<uint32_t> distribution{ tensor_value, tensor_value };
John Richardsonb482ce12017-09-18 12:44:01 +010081 library->fill(Accessor(src), distribution, 0);
82
83 // Create and configure kernel
84 NEFillBorderKernel fill_border;
85 fill_border.configure(&src, border_size, border_mode, border_value);
86
87 // Run kernel
88 fill_border.run(fill_border.window(), ThreadInfo());
89
90 // Validate border
91 border_size.limit(padding);
92 validate(Accessor(src), border_size, border_mode, &border_value);
93
94 // Validate tensor
95 validate(Accessor(src), &tensor_value);
96}
97
98TEST_SUITE_END()
99TEST_SUITE_END()
100} // namespace validation
101} // namespace test
102} // namespace arm_compute