blob: 4f6f46e9c8630cd06f19d247e0530bcd05a4a6a8 [file] [log] [blame]
Georgios Pinitas06ac6e42021-07-05 08:08:52 +01001/*
2 * Copyright (c) 2021 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#ifndef ARM_COMPUTE_ACL_OPERATORS_H_
25#define ARM_COMPUTE_ACL_OPERATORS_H_
26
27#include "arm_compute/AclDescriptors.h"
28#include "arm_compute/AclTypes.h"
29
30/** Used during an operator creation to validate its support */
31#define ARM_COMPUTE_VALIDATE_OPERATOR_SUPPORT ((AclOperator *)(size_t)-1)
32
33#ifdef __cplusplus
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034extern "C"
35{
Georgios Pinitas06ac6e42021-07-05 08:08:52 +010036#endif /** __cplusplus */
37
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010038 /** Create an activation operator
Georgios Pinitas06ac6e42021-07-05 08:08:52 +010039 *
40 * Applies an activation function to a given tensor .
41 * Compute Library supports a wide list of activation functions @ref AclActivationType.
42 *
43 * A summarized table is the following:
44 * Activation Function | Mathematical Expression |
45 * -------------------------|------------------------------------------------------------------------------------------------------------------------------------------|
46 * Identity | \f$ f(x)= x \f$ |
47 * Logistic | \f$ f(x) = \frac{1}{1 + e^{-x}} \f$ |
48 * Tanh | \f$ f(x) = a \cdot tanh(b \cdot x) \f$ |
49 * Relu | \f$ f(x) = max(0,x) \f$ |
50 * Bounded Relu | \f$ f(x) = min(a, max(0,x)) \f$ |
51 * Lower-Upper Bounded Relu | \f$ f(x) = min(a, max(b,x)) \f$ |
52 * Leaky Relu | \f$ f(x) = \begin{cases} \alpha x & \quad \text{if } x \text{ < 0}\\ x & \quad \text{if } x \geq \text{ 0 } \end{cases} \f$ |
53 * Soft Relu | \f$ f(x)= log(1+e^x) \f$ |
54 * Soft Elu | \f$ f(x) = \begin{cases} \alpha (exp(x) - 1) & \quad \text{if } x \text{ < 0}\\ x & \quad \text{if } x \geq \text{ 0 } \end{cases} \f$ |
55 * Abs | \f$ f(x)= |x| \f$ |
56 * Square | \f$ f(x)= x^2 \f$ |
57 * Sqrt | \f$ f(x) = \sqrt{x} \f$ |
58 * Linear | \f$ f(x)= ax + b \f$ |
59 * Hard Swish | \f$ f(x) = (x * relu6(x+3))/6 \f$ |
60 *
61 * Backends:
62 * - OpenCL: ClActivationLayer
63 * - Cpu : CpuActivationLayer
64 *
65 * @param[in, out] op Operator construct to be created if creation was successful
66 * @param[in] ctx Context to be used for the creation of the operator
67 * @param[in] src Source tensor descriptor. Slot id: ACL_SRC
68 * @param[in] dst Destination tensor descriptor. Slot id: ACL_DST
69 * @param[in] info Activation meta-data
70 *
71 * @return Status code
72 *
73 * Returns:
74 * - @ref AclSuccess if function was completed successfully
75 * - @ref AclOutOfMemory if there was a failure allocating memory resources
76 * - @ref AclUnsupportedTarget if operator for the requested target is unsupported
77 * - @ref AclInvalidArgument if a given argument is invalid
78 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010079 AclStatus AclActivation(AclOperator *op,
80 AclContext ctx,
81 const AclTensorDescriptor *src,
82 const AclTensorDescriptor *dst,
83 const AclActivationDescriptor info);
Georgios Pinitas06ac6e42021-07-05 08:08:52 +010084#ifdef __cplusplus
85}
86#endif /** __cplusplus */
87#endif /* ARM_COMPUTE_ACL_OPERATORS_H_ */