blob: 542cd1a193a3526dc07a12054b040188d72581a3 [file] [log] [blame]
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +01001/*
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +00002 * Copyright (c) 2017-2019 ARM Limited.
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +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 */
24#include "arm_compute/core/Types.h"
25#include "arm_compute/runtime/MultiImage.h"
26#include "arm_compute/runtime/NEON/functions/NEChannelExtract.h"
27#include "arm_compute/runtime/Tensor.h"
28#include "arm_compute/runtime/TensorAllocator.h"
29#include "tests/NEON/Accessor.h"
30#include "tests/PaddingCalculator.h"
31#include "tests/datasets/ConvertPolicyDataset.h"
32#include "tests/datasets/ShapeDatasets.h"
33#include "tests/framework/Asserts.h"
34#include "tests/framework/Macros.h"
35#include "tests/framework/datasets/Datasets.h"
36#include "tests/validation/Validation.h"
37#include "tests/validation/fixtures/ChannelExtractFixture.h"
38
39namespace arm_compute
40{
41namespace test
42{
43namespace validation
44{
45namespace
46{
47// Input data sets
48const auto ChannelExtractRGBADataset = combine(framework::dataset::make("FormatType", { Format::RGBA8888 }),
49 framework::dataset::make("ChannelType", { Channel::R, Channel::G, Channel::B, Channel::A }));
50const auto ChannelExtractYUVDataset = combine(framework::dataset::make("FormatType", { Format::YUYV422, Format::UYVY422 }),
51 framework::dataset::make("ChannelType", { Channel::Y, Channel::U, Channel::V }));
52const auto ChannelExtractYUVPlanarDataset = combine(framework::dataset::make("FormatType", { Format::IYUV, Format::YUV444, Format::NV12, Format::NV21 }),
53 framework::dataset::make("ChannelType", { Channel::Y, Channel::U, Channel::V }));
54
55inline void validate_configuration(const TensorShape &shape, Format format, Channel channel)
56{
57 const unsigned int num_planes = num_planes_from_format(format);
58
59 TensorShape dst_shape = adjust_odd_shape(shape, format);
60 dst_shape = calculate_subsampled_shape(dst_shape, format, channel);
61
62 // Create tensors
63 MultiImage ref_src = create_multi_image<MultiImage>(shape, format);
64 Tensor dst = create_tensor<Tensor>(dst_shape, Format::U8);
65
66 // Create and Configure function
67 NEChannelExtract channel_extract;
68
69 if(1U == num_planes)
70 {
71 const Tensor *plane_src = ref_src.plane(0);
72
73 channel_extract.configure(plane_src, channel, &dst);
74 }
75 else
76 {
77 channel_extract.configure(&ref_src, channel, &dst);
78 }
79
80 // TODO(bsgcomp): Add validation for padding and shape (COMPMID-659)
81}
82} // namespace
83
84TEST_SUITE(NEON)
85TEST_SUITE(ChannelExtract)
86
87template <typename T>
88using NEChannelExtractFixture = ChannelExtractValidationFixture<MultiImage, Tensor, Accessor, NEChannelExtract, T>;
89
90TEST_SUITE(Configuration)
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +000091DATA_TEST_CASE(RGBA, framework::DatasetMode::ALL, combine(datasets::Small2DShapes(), ChannelExtractRGBADataset),
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010092 shape, format, channel)
93{
94 validate_configuration(shape, format, channel);
95}
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +000096DATA_TEST_CASE(YUV, framework::DatasetMode::ALL, combine(datasets::Small2DShapes(), ChannelExtractYUVDataset),
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010097 shape, format, channel)
98{
99 validate_configuration(shape, format, channel);
100}
101
Michalis Spyrou5c9f0c42019-01-16 14:48:48 +0000102DATA_TEST_CASE(YUVPlanar, framework::DatasetMode::ALL, combine(datasets::Small2DShapes(), ChannelExtractYUVPlanarDataset),
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100103 shape, format, channel)
104{
105 validate_configuration(shape, format, channel);
106}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000107TEST_SUITE_END() // Configuration
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100108
109TEST_SUITE(RGBA)
110FIXTURE_DATA_TEST_CASE(RunSmall, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractRGBADataset))
111{
112 // Validate output
113 validate(Accessor(_target), _reference);
114}
115FIXTURE_DATA_TEST_CASE(RunLarge, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractRGBADataset))
116{
117 // Validate output
118 validate(Accessor(_target), _reference);
119}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000120TEST_SUITE_END() // RGBA
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100121
122TEST_SUITE(YUV)
123FIXTURE_DATA_TEST_CASE(RunSmall, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVDataset))
124{
125 // Validate output
126 validate(Accessor(_target), _reference);
127}
128FIXTURE_DATA_TEST_CASE(RunLarge, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVDataset))
129{
130 // Validate output
131 validate(Accessor(_target), _reference);
132}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000133TEST_SUITE_END() // YUV
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100134
135TEST_SUITE(YUVPlanar)
136FIXTURE_DATA_TEST_CASE(RunSmall, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVPlanarDataset))
137{
138 // Validate output
139 validate(Accessor(_target), _reference);
140}
141FIXTURE_DATA_TEST_CASE(RunLarge, NEChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVPlanarDataset))
142{
143 // Validate output
144 validate(Accessor(_target), _reference);
145}
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000146TEST_SUITE_END() // YUVPlanar
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100147
Michalis Spyrouaeebe4a2019-01-09 14:21:03 +0000148TEST_SUITE_END() // ChannelExtract
149TEST_SUITE_END() // NEON
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100150
151} // namespace validation
152} // namespace test
153} // namespace arm_compute