blob: aa1a00e106b9e679500cef44791f99cf4e08866d [file] [log] [blame]
Michele Di Giorgiob57be0d2018-08-31 16:26:25 +01001/*
2 * Copyright (c) 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/CLTensor.h"
26#include "arm_compute/runtime/CL/CLTensorAllocator.h"
27#include "arm_compute/runtime/CL/functions/CLNormalizePlanarYUVLayer.h"
28#include "tests/CL/CLAccessor.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 RelativeTolerance<float> tolerance_f16(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F16 */
47constexpr RelativeTolerance<float> tolerance_f32(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for DataType::F32 */
48} // namespace
49
50TEST_SUITE(CL)
51TEST_SUITE(NormalizePlanarYUVLayer)
52
53template <typename T>
54using CLNormalizePlanarYUVLayerFixture = NormalizePlanarYUVLayerValidationFixture<CLTensor, CLAccessor, CLNormalizePlanarYUVLayer, T>;
55
56DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(combine(datasets::RandomNormalizePlanarYUVLayerDataset(), framework::dataset::make("DataType", { DataType::F16 })),
57 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
58 shape0, shape1, dt, data_layout)
59{
60 TensorShape src_dst_shapes = shape0;
61 if(data_layout == DataLayout::NHWC)
62 {
63 permute(src_dst_shapes, PermutationVector(2U, 0U, 1U));
64 }
65
66 // Create tensors
67 CLTensor src = create_tensor<CLTensor>(src_dst_shapes, dt, 1, QuantizationInfo(), data_layout);
68 CLTensor dst = create_tensor<CLTensor>(src_dst_shapes, dt, 1, QuantizationInfo(), data_layout);
69 CLTensor mean = create_tensor<CLTensor>(shape1, dt, 1);
70 CLTensor sd = create_tensor<CLTensor>(shape1, dt, 1);
71
72 // Create and Configure function
73 CLNormalizePlanarYUVLayer norm;
74 norm.configure(&src, &dst, &mean, &sd);
75
76 // Validate valid region
77 const ValidRegion valid_region = shape_to_valid_region(src_dst_shapes);
78 validate(dst.info()->valid_region(), valid_region);
79}
80
81// *INDENT-OFF*
82// clang-format off
83DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(
84 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching data types
85 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16), // Window shrink
86 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8), // Unsupported data type
87 TensorInfo(TensorShape(32U, 16U, 8U), 1, DataType::F16),
88 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16), // Mismatching mean and sd shapes
89 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F32), // Mismatching shapes
90 }),
91 framework::dataset::make("OutputInfo",{ TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
92 TensorInfo(TensorShape(27U, 13U, 2U), 1, DataType::F16),
93 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::U8),
94 TensorInfo(TensorShape(32U, 16U, 8U), 1, DataType::F16),
95 TensorInfo(TensorShape(32U, 13U, 2U), 1, DataType::F16),
96 TensorInfo(TensorShape(30U, 11U, 2U), 1, DataType::F32),
97 })),
98 framework::dataset::make("MSTDInfo",{ TensorInfo(TensorShape(2U), 1, DataType::F16),
99 TensorInfo(TensorShape(2U), 1, DataType::F16),
100 TensorInfo(TensorShape(2U), 1, DataType::U8),
101 TensorInfo(TensorShape(8U), 1, DataType::F16),
102 TensorInfo(TensorShape(6U), 1, DataType::F16),
103 TensorInfo(TensorShape(2U), 1, DataType::F32),
104 })),
105 framework::dataset::make("Expected", { false, false, false, true, false, false })),
106 input_info, output_info, msd_info, expected)
107{
108 const auto &mean_info = msd_info;
109 const auto &sd_info = msd_info;
110 bool has_error = bool(CLNormalizePlanarYUVLayer::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)));
111 ARM_COMPUTE_EXPECT(has_error == expected, framework::LogLevel::ERRORS);
112}
113// clang-format on
114// *INDENT-ON*
115
116TEST_SUITE(Float)
117TEST_SUITE(FP16)
118FIXTURE_DATA_TEST_CASE(Random, CLNormalizePlanarYUVLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::RandomNormalizePlanarYUVLayerDataset(),
119 framework::dataset::make("DataType", DataType::F16)),
120 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
121{
122 // Validate output
123 validate(CLAccessor(_target), _reference, tolerance_f16, 0);
124}
125TEST_SUITE_END()
126
127TEST_SUITE(FP32)
128FIXTURE_DATA_TEST_CASE(Random, CLNormalizePlanarYUVLayerFixture<float>, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::RandomNormalizePlanarYUVLayerDataset(),
129 framework::dataset::make("DataType", DataType::F32)),
130 framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })))
131{
132 // Validate output
133 validate(CLAccessor(_target), _reference, tolerance_f32);
134}
135TEST_SUITE_END()
136TEST_SUITE_END()
137
138TEST_SUITE_END()
139TEST_SUITE_END()
140} // namespace validation
141} // namespace test
142} // namespace arm_compute