blob: 0fb464112a7c8a6b9d94ceb188962c596f657543 [file] [log] [blame]
Abe Mbise4bd2cb82017-09-27 18:39:19 +01001/*
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 "FixedPointTarget.h"
25
26#include "arm_compute/core/Types.h"
27#include "arm_compute/runtime/CL/CLTensor.h"
28#include "arm_compute/runtime/CL/CLTensorAllocator.h"
29#include "tests/CL/CLAccessor.h"
30#include "tests/PaddingCalculator.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/FixedPointFixture.h"
37
38namespace arm_compute
39{
40namespace test
41{
42namespace validation
43{
44namespace
45{
46constexpr AbsoluteTolerance<float> tolerance_exp(1.0f); /**< Tolerance value for comparing reference's output against implementation's output (exponential)*/
47constexpr AbsoluteTolerance<float> tolerance_invsqrt(4.0f); /**< Tolerance value for comparing reference's output against implementation's output (inverse square-root) */
48constexpr AbsoluteTolerance<float> tolerance_log(5.0f); /**< Tolerance value for comparing reference's output against implementation's output (logarithm) */
49} // namespace
50
51TEST_SUITE(CL)
52TEST_SUITE(FixedPoint)
53TEST_SUITE(QS8)
54
55template <typename T>
56using CLFixedPointFixture = FixedPointValidationFixture<CLTensor, CLAccessor, T>;
57
58TEST_SUITE(Exp)
59FIXTURE_DATA_TEST_CASE(RunSmall, CLFixedPointFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::Small1DShape(), framework::dataset::make("DataType",
60 DataType::QS8)),
61 framework::dataset::make("FixedPointOp", FixedPointOp::EXP)),
62 framework::dataset::make("FractionalBits", 1, 6)))
63{
64 // Validate output
65 validate(CLAccessor(_target), _reference, tolerance_exp);
66}
67TEST_SUITE_END()
68
69TEST_SUITE(Log)
70FIXTURE_DATA_TEST_CASE(RunSmall, CLFixedPointFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::Small1DShape(), framework::dataset::make("DataType",
71 DataType::QS8)),
72 framework::dataset::make("FixedPointOp", FixedPointOp::LOG)),
73 framework::dataset::make("FractionalBits", 3, 6)))
74{
75 // Validate output
76 validate(CLAccessor(_target), _reference, tolerance_log);
77}
78TEST_SUITE_END()
79
80TEST_SUITE(Invsqrt)
81FIXTURE_DATA_TEST_CASE(RunSmall, CLFixedPointFixture<int8_t>, framework::DatasetMode::ALL, combine(combine(combine(datasets::Small1DShape(), framework::dataset::make("DataType",
82 DataType::QS8)),
83 framework::dataset::make("FixedPointOp", FixedPointOp::INV_SQRT)),
84 framework::dataset::make("FractionalBits", 1, 6)))
85{
86 // Validate output
87 validate(CLAccessor(_target), _reference, tolerance_invsqrt);
88}
89TEST_SUITE_END()
90
91TEST_SUITE_END()
92TEST_SUITE_END()
93TEST_SUITE_END()
94} // namespace validation
95} // namespace test
96} // namespace arm_compute