blob: 7657d5a7ea08c756e06c25e14ff447fc19cb0583 [file] [log] [blame]
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * 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/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 }));
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010054} // namespace
55
56TEST_SUITE(CL)
57TEST_SUITE(ChannelExtract)
58
59template <typename T>
60using CLChannelExtractFixture = ChannelExtractValidationFixture<CLMultiImage, CLTensor, CLAccessor, CLChannelExtract, T>;
61
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010062TEST_SUITE(RGBA)
63FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractRGBADataset))
64{
65 // Validate output
66 validate(CLAccessor(_target), _reference);
67}
68FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractRGBADataset))
69{
70 // Validate output
71 validate(CLAccessor(_target), _reference);
72}
Michalis Spyrou80943252019-01-10 17:19:50 +000073TEST_SUITE_END() // RGBA
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010074
75TEST_SUITE(YUV)
76FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVDataset))
77{
78 // Validate output
79 validate(CLAccessor(_target), _reference);
80}
81FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVDataset))
82{
83 // Validate output
84 validate(CLAccessor(_target), _reference);
85}
Michalis Spyrou80943252019-01-10 17:19:50 +000086TEST_SUITE_END() // YUV
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +010087
88TEST_SUITE(YUVPlanar)
89FIXTURE_DATA_TEST_CASE(RunSmall, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), ChannelExtractYUVPlanarDataset))
90{
91 // Validate output
92 validate(CLAccessor(_target), _reference);
93}
94FIXTURE_DATA_TEST_CASE(RunLarge, CLChannelExtractFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), ChannelExtractYUVPlanarDataset))
95{
96 // Validate output
97 validate(CLAccessor(_target), _reference);
98}
Michalis Spyrou80943252019-01-10 17:19:50 +000099TEST_SUITE_END() // YUVPlanar
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100100
Michalis Spyrou80943252019-01-10 17:19:50 +0000101TEST_SUITE_END() // ChannelExtract
102TEST_SUITE_END() // CL
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100103
104} // namespace validation
105} // namespace test
106} // namespace arm_compute