blob: e06b19cfea90d4d15a6b6d2b3f5d7c21283fbc04 [file] [log] [blame]
zhenglin0fb6cf52017-12-12 15:56:09 +08001/*
2 * Copyright (c) 2017 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/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
55DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::RandomNormalizePlanarYUVLayerDataset(), framework::dataset::make("DataType", { DataType::F16 })),
56 shape0, shape1, dt)
57{
58 // Create tensors
59 GCTensor src = create_tensor<GCTensor>(shape0, dt, 1);
60 GCTensor dst = create_tensor<GCTensor>(shape0, dt, 1);
61 GCTensor mean = create_tensor<GCTensor>(shape1, dt, 1);
62 GCTensor sd = create_tensor<GCTensor>(shape1, dt, 1);
63
64 // Create and Configure function
65 GCNormalizePlanarYUVLayer norm;
66 norm.configure(&src, &dst, &mean, &sd);
67
68 // Validate valid region
69 const ValidRegion valid_region = shape_to_valid_region(shape0);
70 validate(dst.info()->valid_region(), valid_region);
71}
72
73TEST_SUITE(Float)
74TEST_SUITE(FP16)
75FIXTURE_DATA_TEST_CASE(Random, GCNormalizePlanarYUVLayerFixture<half>, framework::DatasetMode::PRECOMMIT, combine(datasets::RandomNormalizePlanarYUVLayerDataset(),
76 framework::dataset::make("DataType", DataType::F16)))
77{
78 // Validate output
79 validate(GCAccessor(_target), _reference, tolerance_f16, 0);
80}
81TEST_SUITE_END()
82TEST_SUITE_END()
83
84TEST_SUITE_END()
85TEST_SUITE_END()
86} // namespace validation
87} // namespace test
88} // namespace arm_compute