blob: 1248a2072deeab1961085dd3e9645940c85119bb [file] [log] [blame]
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +01001/*
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/CLMultiImage.h"
26#include "arm_compute/runtime/CL/CLTensor.h"
27#include "arm_compute/runtime/CL/CLTensorAllocator.h"
28#include "arm_compute/runtime/CL/functions/CLChannelExtract.h"
29#include "tests/CL/CLAccessor.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 CLMultiImage ref_src = create_multi_image<CLMultiImage>(shape, format);
64 CLTensor dst = create_tensor<CLTensor>(dst_shape, Format::U8);
65
66 // Create and Configure function
67 CLChannelExtract channel_extract;
68
69 if(1U == num_planes)
70 {
71 const CLTensor *plane_src = ref_src.cl_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(CL)
85TEST_SUITE(ChannelExtract)
86
87template <typename T>
88using CLChannelExtractFixture = ChannelExtractValidationFixture<CLMultiImage, CLTensor, CLAccessor, CLChannelExtract, T>;
89
90TEST_SUITE(Configuration)
91DATA_TEST_CASE(RGBA, framework::DatasetMode::ALL, combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()), ChannelExtractRGBADataset),
92 shape, format, channel)
93{
94 validate_configuration(shape, format, channel);
95}
96DATA_TEST_CASE(YUV, framework::DatasetMode::ALL, combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()), ChannelExtractYUVDataset),
97 shape, format, channel)
98{
99 validate_configuration(shape, format, channel);
100}
101
102DATA_TEST_CASE(YUVPlanar, framework::DatasetMode::ALL, combine(concat(datasets::Small2DShapes(), datasets::Large2DShapes()), ChannelExtractYUVPlanarDataset),
103 shape, format, channel)
104{
105 validate_configuration(shape, format, channel);
106}
107TEST_SUITE_END()
108
109TEST_SUITE(RGBA)
110FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractRGBADataset))
111{
112 // Validate output
113 validate(CLAccessor(_target), _reference);
114}
115FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractRGBADataset))
116{
117 // Validate output
118 validate(CLAccessor(_target), _reference);
119}
120TEST_SUITE_END()
121
122TEST_SUITE(YUV)
123FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVDataset))
124{
125 // Validate output
126 validate(CLAccessor(_target), _reference);
127}
128FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVDataset))
129{
130 // Validate output
131 validate(CLAccessor(_target), _reference);
132}
133TEST_SUITE_END()
134
135TEST_SUITE(YUVPlanar)
136FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVPlanarDataset))
137{
138 // Validate output
139 validate(CLAccessor(_target), _reference);
140}
141FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVPlanarDataset))
142{
143 // Validate output
144 validate(CLAccessor(_target), _reference);
145}
146TEST_SUITE_END()
147
148TEST_SUITE_END()
149TEST_SUITE_END()
150
151} // namespace validation
152} // namespace test
153} // namespace arm_compute