blob: d69d8c2801efcc1480ed973d63db0c1c26a28fcf [file] [log] [blame]
John Richardson338b1952017-08-24 12:03:42 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2019 Arm Limited.
John Richardson338b1952017-08-24 12:03:42 +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/runtime/CL/functions/CLMeanStdDev.h"
John Richardson338b1952017-08-24 12:03:42 +010025#include "tests/CL/CLAccessor.h"
26#include "tests/PaddingCalculator.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010027#include "tests/datasets/ShapeDatasets.h"
28#include "tests/framework/Macros.h"
29#include "tests/validation/Validation.h"
30#include "tests/validation/fixtures/MeanStdDevFixture.h"
John Richardson338b1952017-08-24 12:03:42 +010031
32namespace arm_compute
33{
34namespace test
35{
36namespace validation
37{
38namespace
39{
steniu013e05e4e2017-08-25 17:18:01 +010040RelativeTolerance<float> tolerance_rel_high_error(0.05f);
41RelativeTolerance<float> tolerance_rel_low_error(0.0005f);
Michalis Spyrou9f5a6432018-08-10 10:08:44 +010042AbsoluteTolerance<float> tolerance_rel_high_error_f32(0.01f);
43AbsoluteTolerance<float> tolerance_rel_low_error_f32(0.00001f);
44AbsoluteTolerance<float> tolerance_rel_high_error_f16(0.1f);
45AbsoluteTolerance<float> tolerance_rel_low_error_f16(0.01f);
John Richardson338b1952017-08-24 12:03:42 +010046} // namespace
47
48TEST_SUITE(CL)
49TEST_SUITE(MeanStdDev)
50
Michalis Spyrou80943252019-01-10 17:19:50 +000051// *INDENT-OFF*
52// clang-format off
53DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(
54 framework::dataset::make("InputInfo", { TensorInfo(TensorShape(16U, 16U), 1, DataType::F32), // Wrong input data type
55 TensorInfo(TensorShape(16U, 5U, 16U), 1, DataType::U8), // Invalid shape
56 TensorInfo(TensorShape(16U, 16U), 1, DataType::U8), // Valid
57 }),
58 framework::dataset::make("Expected", { false, false, true })),
59 input_info, expected)
60{
61 ARM_COMPUTE_EXPECT(bool(CLMeanStdDev::validate(&input_info.clone()->set_is_resizable(false), nullptr, nullptr)) == expected, framework::LogLevel::ERRORS);
62}
63// clang-format on
64// *INDENT-ON*
65
66DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::Small2DShapes(), framework::dataset::make("DataType", { DataType::U8 })), shape,
Michalis Spyroud1794eb2018-06-15 16:15:26 +010067 data_type)
John Richardson338b1952017-08-24 12:03:42 +010068{
69 // Create tensors
70 CLTensor src = create_tensor<CLTensor>(shape, data_type);
71
72 // Create output variables
73 float mean = 0.f;
74 float std_dev = 0.f;
75
76 ARM_COMPUTE_EXPECT(src.info()->is_resizable(), framework::LogLevel::ERRORS);
77
78 // Create configure function
79 CLMeanStdDev mean_std_dev_image;
80 mean_std_dev_image.configure(&src, &mean, &std_dev);
81
82 // Validate valid region
83 const ValidRegion valid_region = shape_to_valid_region(shape);
84 validate(src.info()->valid_region(), valid_region);
85
86 // Validate padding
87 const PaddingSize padding = PaddingCalculator(shape.x(), 8).required_padding();
88 validate(src.info()->padding(), padding);
89}
90
91template <typename T>
92using CLMeanStdDevFixture = MeanStdDevValidationFixture<CLTensor, CLAccessor, CLMeanStdDev, T>;
93
Michalis Spyroud1794eb2018-06-15 16:15:26 +010094TEST_SUITE(U8)
John Richardson338b1952017-08-24 12:03:42 +010095FIXTURE_DATA_TEST_CASE(RunSmall, CLMeanStdDevFixture<uint8_t>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), framework::dataset::make("DataType",
96 DataType::U8)))
97{
98 // Validate mean output
99 validate(_target.first, _reference.first);
100
101 // Validate std_dev output
102 validate(_target.second, _reference.second, tolerance_rel_high_error);
103}
104FIXTURE_DATA_TEST_CASE(RunLarge, CLMeanStdDevFixture<uint8_t>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), framework::dataset::make("DataType",
105 DataType::U8)))
106{
107 // Validate mean output
108 validate(_target.first, _reference.first, tolerance_rel_low_error);
109
110 // Validate std_dev output
111 validate(_target.second, _reference.second, tolerance_rel_high_error);
112}
Michalis Spyroud1794eb2018-06-15 16:15:26 +0100113TEST_SUITE_END() // U8
John Richardson338b1952017-08-24 12:03:42 +0100114
Michalis Spyroud1794eb2018-06-15 16:15:26 +0100115TEST_SUITE(F16)
116FIXTURE_DATA_TEST_CASE(RunSmall, CLMeanStdDevFixture<half>, framework::DatasetMode::ALL, combine(datasets::Small2DShapes(), framework::dataset::make("DataType",
117 DataType::F16)))
118{
119 // Validate mean output
120 validate(_target.first, _reference.first, tolerance_rel_low_error_f16);
121
122 // Validate std_dev output
123 validate(_target.second, _reference.second, tolerance_rel_high_error_f16);
124}
125TEST_SUITE_END() // F16
126
127TEST_SUITE(F32)
128FIXTURE_DATA_TEST_CASE(RunSmall, CLMeanStdDevFixture<float>, framework::DatasetMode::PRECOMMIT, combine(datasets::Small2DShapes(), framework::dataset::make("DataType",
129 DataType::F32)))
130{
131 // Validate mean output
132 validate(_target.first, _reference.first, tolerance_rel_low_error_f32);
133
134 // Validate std_dev output
135 validate(_target.second, _reference.second, tolerance_rel_high_error_f32);
136}
137FIXTURE_DATA_TEST_CASE(RunLarge, CLMeanStdDevFixture<float>, framework::DatasetMode::NIGHTLY, combine(datasets::Large2DShapes(), framework::dataset::make("DataType",
138 DataType::F32)))
139{
140 // Validate mean output
141 validate(_target.first, _reference.first, tolerance_rel_low_error_f32);
142
143 // Validate std_dev output
144 validate(_target.second, _reference.second, tolerance_rel_high_error_f32);
145}
146TEST_SUITE_END() // F32
147
148TEST_SUITE_END() // MeanStdDev
149TEST_SUITE_END() // CL
John Richardson338b1952017-08-24 12:03:42 +0100150} // namespace validation
151} // namespace test
152} // namespace arm_compute