blob: 5beca7c76df1d0e8687a4fe3f65bacf4dbd5bd71 [file] [log] [blame]
Moritz Pflanzer572ade72017-07-21 17:36:33 +01001/*
Georgios Pinitas4b3fba12019-06-04 17:31:46 +01002 * Copyright (c) 2017-2019 ARM Limited.
Moritz Pflanzer572ade72017-07-21 17:36:33 +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#ifndef __ARM_COMPUTE_TEST_ACTIVATION_LAYER_H__
25#define __ARM_COMPUTE_TEST_ACTIVATION_LAYER_H__
26
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010027#include "tests/SimpleTensor.h"
Moritz Pflanzera09de0c2017-09-01 20:41:12 +010028#include "tests/validation/Helpers.h"
Moritz Pflanzer572ade72017-07-21 17:36:33 +010029
30namespace arm_compute
31{
32namespace test
33{
34namespace validation
35{
36namespace reference
37{
Giorgio Arena73023022018-09-04 14:55:55 +010038template <typename T>
39inline T activate_float(T x, T a, T b, ActivationLayerInfo::ActivationFunction activation)
40{
41 T ret;
42
43 switch(activation)
44 {
45 case ActivationLayerInfo::ActivationFunction::ABS:
46 ret = std::abs(x);
47 break;
48 case ActivationLayerInfo::ActivationFunction::LINEAR:
49 ret = a * x + b;
50 break;
51 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
52 ret = static_cast<T>(1) / (static_cast<T>(1) + std::exp(-x));
53 break;
54 case ActivationLayerInfo::ActivationFunction::RELU:
55 ret = std::max<T>(static_cast<T>(0), x);
56 break;
57 case ActivationLayerInfo::ActivationFunction::BOUNDED_RELU:
58 ret = std::min<T>(a, std::max(static_cast<T>(0), x));
59 break;
60 case ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU:
61 ret = std::min<T>(a, std::max<T>(b, x));
62 break;
63 case ActivationLayerInfo::ActivationFunction::LEAKY_RELU:
64 ret = (x > 0) ? x : a * x;
65 break;
66 case ActivationLayerInfo::ActivationFunction::SOFT_RELU:
67 ret = std::log(static_cast<T>(1) + std::exp(x));
68 break;
69 case ActivationLayerInfo::ActivationFunction::SQRT:
70 ret = std::sqrt(x);
71 break;
72 case ActivationLayerInfo::ActivationFunction::SQUARE:
73 ret = x * x;
74 break;
75 case ActivationLayerInfo::ActivationFunction::TANH:
76 ret = a * std::tanh(b * x);
77 break;
Usama Arif80e55db2019-05-14 17:48:47 +010078 case ActivationLayerInfo::ActivationFunction::IDENTITY:
79 ret = x;
80 break;
Giorgio Arena73023022018-09-04 14:55:55 +010081 default:
82 ARM_COMPUTE_ERROR("Unsupported activation function");
83 break;
84 }
85
86 return ret;
87}
88
Isabella Gottardi651540f2018-09-13 15:33:35 +010089template <typename T>
Georgios Pinitas4b3fba12019-06-04 17:31:46 +010090SimpleTensor<T> activation_layer(const SimpleTensor<T> &src, ActivationLayerInfo info, const QuantizationInfo &oq_info = QuantizationInfo());
Moritz Pflanzer572ade72017-07-21 17:36:33 +010091} // namespace reference
92} // namespace validation
93} // namespace test
94} // namespace arm_compute
95#endif /* __ARM_COMPUTE_TEST_ACTIVATION_LAYER_H__ */