blob: db05c100cccd03a63c0123e006be367ba588e6c5 [file] [log] [blame]
Sheri Zhang61243902021-01-12 18:25:16 +00001/*
Matthew Benthamf1aeab92023-05-30 13:35:34 +00002 * Copyright (c) 2021-2023 Arm Limited.
Sheri Zhang61243902021-01-12 18:25:16 +00003 *
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_CPU_ADD_H
25#define ARM_COMPUTE_CPU_ADD_H
26
SiCong Li91295492023-07-21 18:16:13 +010027#include "arm_compute/function_info/ActivationLayerInfo.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010028#include "src/cpu/ICpuOperator.h"
Sheri Zhang61243902021-01-12 18:25:16 +000029
30namespace arm_compute
31{
32namespace cpu
33{
Michele Di Giorgiobd2c8e12021-01-19 15:29:02 +000034/** Basic function to run @ref kernels::CpuAddKernel */
Sheri Zhang61243902021-01-12 18:25:16 +000035class CpuAdd : public ICpuOperator
36{
37public:
Sheri Zhang61243902021-01-12 18:25:16 +000038 /** Initialise the kernel's input, dst and border mode.
39 *
40 * Valid configurations (src0,src1) -> dst :
41 *
42 * - (U8,U8) -> U8
Sheri Zhang61243902021-01-12 18:25:16 +000043 * - (S16,S16) -> S16
44 * - (S32,S32) -> S32
45 * - (F16,F16) -> F16
46 * - (F32,F32) -> F32
47 * - (QASYMM8,QASYMM8) -> QASYMM8
48 * - (QASYMM8_SIGNED,QASYMM8_SIGNED) -> QASYMM8_SIGNED
49 * - (QSYMM16,QSYMM16) -> QSYMM16
50 *
51 * @param[in] src0 First input tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32
52 * @param[in] src1 Second input tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32
53 * @param[out] dst The dst tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32.
54 * @param[in] policy Overflow policy.
55 * @param[in] act_info (Optional) Activation layer information in case of a fused activation. Currently not supported.
56 *
57 */
58 void configure(const ITensorInfo *src0, const ITensorInfo *src1, ITensorInfo *dst, ConvertPolicy policy, const ActivationLayerInfo &act_info = ActivationLayerInfo());
Georgios Pinitas2eb5d162021-07-02 09:01:49 +010059 /** Static function to check if given info will lead to a valid configuration
Sheri Zhang61243902021-01-12 18:25:16 +000060 *
Georgios Pinitas2eb5d162021-07-02 09:01:49 +010061 * Similar to @ref CpuAdd::configure()
Sheri Zhang61243902021-01-12 18:25:16 +000062 *
63 * @return a status
64 */
65 static Status validate(const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *dst, ConvertPolicy policy, const ActivationLayerInfo &act_info = ActivationLayerInfo());
Gunes Bayir9b921be2022-07-28 17:44:00 +010066
67 // Inherited methods overridden:
68 void run(ITensorPack &tensors) override;
Sheri Zhang61243902021-01-12 18:25:16 +000069};
70} // namespace cpu
71} // namespace arm_compute
72#endif /* ARM_COMPUTE_CPU_ADD_H */