blob: a12f411680043843432dcaf57a98f88e0ad85967 [file] [log] [blame]
Giorgio Arena73023022018-09-04 14:55:55 +01001/*
2 * Copyright (c) 2018 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 "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
49 for(int i = 0; i < src.num_elements(); ++i)
50 {
51 const size_t z = index2coord(dst.shape(), i).z() % (num_classes + 5);
52
53 if(z != 2 && z != 3)
54 {
55 dst[i] = activate_float<T>(src[i], a, b, info.activation());
56 }
57 else
58 {
59 dst[i] = src[i];
60 }
61 }
62
63 return dst;
64}
65
66template <>
67SimpleTensor<uint8_t> yolo_layer<uint8_t>(const SimpleTensor<uint8_t> &src, const ActivationLayerInfo &info, int32_t num_classes)
68{
69 SimpleTensor<float> src_tmp = convert_from_asymmetric(src);
70 SimpleTensor<float> dst_tmp = yolo_layer<float>(src_tmp, info, num_classes);
71 SimpleTensor<uint8_t> dst = convert_to_asymmetric(dst_tmp, src.quantization_info());
72 return dst;
73}
74
75template SimpleTensor<float> yolo_layer(const SimpleTensor<float> &src, const ActivationLayerInfo &info, int32_t num_classes);
76template SimpleTensor<half> yolo_layer(const SimpleTensor<half> &src, const ActivationLayerInfo &info, int32_t num_classes);
77} // namespace reference
78} // namespace validation
79} // namespace test
80} // namespace arm_compute