blob: fe38a99d9596dd6ff1aaded271fbd9ae9616b321 [file] [log] [blame]
Michalis Spyrou0a8334c2017-06-14 18:00:05 +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 */
Moritz Pflanzerfb5aabb2017-07-18 14:39:55 +010024#include "AssetsLibrary.h"
Michalis Spyrou0a8334c2017-06-14 18:00:05 +010025#include "Globals.h"
Michalis Spyrou0a8334c2017-06-14 18:00:05 +010026#include "NEON/NEAccessor.h"
Michalis Spyrou0a8334c2017-06-14 18:00:05 +010027#include "TypePrinter.h"
28#include "Utils.h"
29#include "validation/Datasets.h"
30#include "validation/ReferenceCPP.h"
31#include "validation/Validation.h"
32
33#include "arm_compute/core/Helpers.h"
34#include "arm_compute/core/NEON/NEFixedPoint.h"
35#include "arm_compute/core/Types.h"
36#include "arm_compute/runtime/Tensor.h"
37#include "arm_compute/runtime/TensorAllocator.h"
38
39#include "boost_wrapper.h"
40
41#include <random>
42#include <string>
43
44using namespace arm_compute;
45using namespace arm_compute::test;
46using namespace arm_compute::test::neon;
47using namespace arm_compute::test::validation;
48
49namespace
50{
51const float tolerance = 1.0f; /**< Tolerance value for comparing reference's output against implementation's output */
52
53/** Compute Neon exponential function for signed 16 bit fixed point.
54 *
55 * @param[in] shape Shape of the input and output tensors.
56 *
57 * @return Computed output tensor.
58 */
59Tensor compute_exp_qs16(const TensorShape &shape, int fixed_point_position)
60{
61 // Create tensors
Moritz Pflanzer94450f12017-06-30 12:48:43 +010062 Tensor src = create_tensor<Tensor>(shape, DataType::QS16, 1, fixed_point_position);
63 Tensor dst = create_tensor<Tensor>(shape, DataType::QS16, 1, fixed_point_position);
Michalis Spyrou0a8334c2017-06-14 18:00:05 +010064
65 constexpr unsigned int num_elems_processed_per_iteration = 8;
66 Window window = calculate_max_window(*src.info(), Steps(num_elems_processed_per_iteration));
67 AccessWindowHorizontal input_access(src.info(), 0, num_elems_processed_per_iteration);
68 AccessWindowHorizontal output_access(dst.info(), 0, num_elems_processed_per_iteration);
69
70 update_window_and_padding(window, input_access, output_access);
71 output_access.set_valid_region(window, src.info()->valid_region());
72
73 // Allocate tensors
74 src.allocator()->allocate();
75 dst.allocator()->allocate();
76
77 BOOST_TEST(!src.info()->is_resizable());
78 BOOST_TEST(!dst.info()->is_resizable());
79
80 // Fill tensors. Keep the range between [-1.0, 1.0) so the result won't
81 // overflow.
82 std::uniform_int_distribution<> distribution(-(1 << (fixed_point_position - 1)), (1 << (fixed_point_position - 1)));
83 library->fill(NEAccessor(src), distribution, 0);
84
85 Iterator input(&src, window);
86 Iterator output(&dst, window);
87
88 execute_window_loop(window, [&](const Coordinates & id)
89 {
90 qint16x8_t in = vld1q_qs16(reinterpret_cast<const qint16_t *>(input.ptr()));
91 // Use saturated exp
92 vst1q_qs16(reinterpret_cast<qint16_t *>(output.ptr()), vqexpq_qs16(in, fixed_point_position));
93 },
94 input, output);
95
96 return dst;
97}
98} // namespace
99
100#ifndef DOXYGEN_SKIP_THIS
101BOOST_AUTO_TEST_SUITE(NEON)
102BOOST_AUTO_TEST_SUITE(FixedPoint)
103BOOST_AUTO_TEST_SUITE(QS16)
104BOOST_AUTO_TEST_SUITE(Exp)
105
106BOOST_TEST_DECORATOR(*boost::unit_test::label("precommit") * boost::unit_test::label("nightly"))
107BOOST_DATA_TEST_CASE(RunSmall, Small1DShape() * boost::unit_test::data::xrange(1, 15), shape, fixed_point_position)
108{
109 // Compute function
110 Tensor dst = compute_exp_qs16(shape, fixed_point_position);
111
112 // Compute reference
113 RawTensor ref_dst = Reference::compute_reference_fixed_point_operation(shape, DataType::QS16, DataType::QS16, FixedPointOp::EXP, fixed_point_position);
114
115 // Validate output
116 validate(NEAccessor(dst), ref_dst, tolerance, 0);
117}
118
119BOOST_AUTO_TEST_SUITE_END()
120BOOST_AUTO_TEST_SUITE_END()
121BOOST_AUTO_TEST_SUITE_END()
122BOOST_AUTO_TEST_SUITE_END()
Anthony Barbierac69aa12017-07-03 17:39:37 +0100123#endif /* DOXYGEN_SKIP_THIS */