blob: 98b0ee5adea690beb59d89024e6e293b6364d7ad [file] [log] [blame]
zhenglin0fb6cf52017-12-12 15:56:09 +08001/*
Michalis Spyroud175ece2020-07-30 23:39:32 +01002 * Copyright (c) 2017-2020 Arm Limited.
zhenglin0fb6cf52017-12-12 15:56:09 +08003 *
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/GLES_COMPUTE/GCTensor.h"
26#include "arm_compute/runtime/GLES_COMPUTE/GCTensorAllocator.h"
27#include "arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizePlanarYUVLayer.h"
28#include "tests/GLES_COMPUTE/GCAccessor.h"
29#include "tests/PaddingCalculator.h"
30#include "tests/datasets/RandomNormalizePlanarYUVLayerDataset.h"
31#include "tests/datasets/ShapeDatasets.h"
32#include "tests/framework/Asserts.h"
33#include "tests/framework/Macros.h"
34#include "tests/framework/datasets/Datasets.h"
35#include "tests/validation/Validation.h"
36#include "tests/validation/fixtures/NormalizePlanarYUVLayerFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46constexpr AbsoluteTolerance<float> tolerance_f16(0.5f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F16 */
47} // namespace
48
49TEST_SUITE(GC)
50TEST_SUITE(NormalizePlanarYUVLayer)
51
52template <typename T>
53using GCNormalizePlanarYUVLayerFixture = NormalizePlanarYUVLayerValidationFixture<GCTensor, GCAccessor, GCNormalizePlanarYUVLayer, T>;
54
Michele Di Giorgiob57be0d2018-08-31 16:26:25 +010055// *INDENT-OFF*
56// clang-format off
57DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
58 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16), // Mismatching data types
59 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16), // Window shrink
60 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Unsupported data type
61 TensorInfo(TensorShape(32U, 16U, 8U), 1, DataType::F16),
62 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16), // Mismatching mean and sd shapes
63 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16), // Mismatching shapes
64 }),
65 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32),
66 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
67 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
68 TensorInfo(TensorShape(32U, 16U, 8U), 1, DataType::F16),
69 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16),
70 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F16),
71 })),
72 framework::dataset::make("MSTDInfo",{ TensorInfo(TensorShape(2U), 1, DataType::F16),
73 TensorInfo(TensorShape(2U), 1, DataType::F16),
74 TensorInfo(TensorShape(2U), 1, DataType::U8),
75 TensorInfo(TensorShape(8U), 1, DataType::F16),
76 TensorInfo(TensorShape(6U), 1, DataType::F16),
77 TensorInfo(TensorShape(2U), 1, DataType::F16),
78 })),
79 framework::dataset::make("Expected", { false, false, false, true, false, false })),
80 input_info, output_info, msd_info, expected)
81{
82 const auto &mean_info = msd_info;
83 const auto &sd_info = msd_info;
84 bool has_error = bool(GCNormalizePlanarYUVLayer::validate(&input_info.clone()->set_is_resizable(false), &output_info.clone()->set_is_resizable(false), &mean_info.clone()->set_is_resizable(false), &sd_info.clone()->set_is_resizable(false)));
85 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
86}
87// clang-format on
88// *INDENT-ON*
89
zhenglin0fb6cf52017-12-12 15:56:09 +080090TEST_SUITE(Float)
91TEST_SUITE(FP16)
Michele Di Giorgiob57be0d2018-08-31 16:26:25 +010092FIXTURE_DATA_TEST_CASE(Random, GCNormalizePlanarYUVLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::RandomNormalizePlanarYUVLayerDataset(),
93 framework::dataset::make("DataType", DataType::F16)),
94 framework::dataset::make("DataLayout", { DataLayout::NCHW })))
zhenglin0fb6cf52017-12-12 15:56:09 +080095{
96 // Validate output
97 validate(GCAccessor(_target), _reference, tolerance_f16, 0);
98}
99TEST_SUITE_END()
100TEST_SUITE_END()
101
102TEST_SUITE_END()
103TEST_SUITE_END()
104} // namespace validation
105} // namespace test
106} // namespace arm_compute