blob: fbc81f1af975dd67be223665ceb5be1a48aba682 [file] [log] [blame]
Giorgio Arena73023022018-09-04 14:55:55 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giorgio Arena73023022018-09-04 14:55:55 +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 "YOLOLayer.h"
25
26#include "ActivationLayer.h"
27
28#include "arm_compute/core/Types.h"
29#include "tests/validation/Helpers.h"
30
31namespace arm_compute
32{
33namespace test
34{
35namespace validation
36{
37namespace reference
38{
39template <typename T, typename std::enable_if<is_floating_point<T>::value, int>::type>
40SimpleTensor<T> yolo_layer(const SimpleTensor<T> &src, const ActivationLayerInfo &info, int32_t num_classes)
41{
42 // Create reference
43 SimpleTensor<T> dst{ src.shape(), src.data_type() };
44
45 // Compute reference
46 const T a(info.a());
47 const T b(info.b());
48
Michalis Spyroufae513c2019-10-16 17:41:33 +010049 const uint32_t num_elements = src.num_elements();
Michalis Spyroud1d77222020-04-08 14:10:15 +010050#if defined(_OPENMP)
51 #pragma omp parallel for
52#endif /* _OPENMP */
Michalis Spyroufae513c2019-10-16 17:41:33 +010053 for(uint32_t i = 0; i < num_elements; ++i)
Giorgio Arena73023022018-09-04 14:55:55 +010054 {
55 const size_t z = index2coord(dst.shape(), i).z() % (num_classes + 5);
56
57 if(z != 2 && z != 3)
58 {
59 dst[i] = activate_float<T>(src[i], a, b, info.activation());
60 }
61 else
62 {
63 dst[i] = src[i];
64 }
65 }
66
67 return dst;
68}
69
70template <>
71SimpleTensor<uint8_t> yolo_layer<uint8_t>(const SimpleTensor<uint8_t> &src, const ActivationLayerInfo &info, int32_t num_classes)
72{
73 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
74 SimpleTensor<float> dst_tmp = yolo_layer<float>(src_tmp, info, num_classes);
Michele Di Giorgio4aff98f2019-08-28 16:27:26 +010075 SimpleTensor<uint8_t> dst = convert_to_asymmetric<uint8_t>(dst_tmp, src.quantization_info());
Giorgio Arena73023022018-09-04 14:55:55 +010076 return dst;
77}
78
79template SimpleTensor<float> yolo_layer(const SimpleTensor<float> &src, const ActivationLayerInfo &info, int32_t num_classes);
80template SimpleTensor<half> yolo_layer(const SimpleTensor<half> &src, const ActivationLayerInfo &info, int32_t num_classes);
81} // namespace reference
82} // namespace validation
83} // namespace test
84} // namespace arm_compute