blob: a7365615b9416616435cdcbeecdf890a8ea4e53c [file] [log] [blame]
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +01001/*
SiCong Lic5ab4df2023-10-17 17:38:57 +01002 * Copyright (c) 2021, 2023 Arm Limited.
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +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 */
SiCong Lic5ab4df2023-10-17 17:38:57 +010024#ifndef ACL_SRC_CPU_OPERATORS_CPUGEMMDIRECTCONV2D_H
25#define ACL_SRC_CPU_OPERATORS_CPUGEMMDIRECTCONV2D_H
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010026
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010027#include "arm_compute/core/TensorInfo.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010028
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010029#include "src/core/common/Macros.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010030#include "src/cpu/ICpuOperator.h"
31#include "src/cpu/operators/CpuActivation.h"
32#include "src/cpu/operators/CpuPermute.h"
33#include "src/cpu/operators/internal/CpuGemmAssemblyDispatch.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010034
35namespace arm_compute
36{
37// Forward declarations
38class ITensor;
39struct Conv2dInfo;
40namespace cpu
41{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010042class CpuGemmDirectConv2d : public ICpuOperator
43{
44public:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010045 CpuGemmDirectConv2d();
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010046 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(CpuGemmDirectConv2d);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010047 ~CpuGemmDirectConv2d();
48 /** Set the input and output tensors.
49 *
50 * Valid data layouts:
51 * - All
52 *
53 * Valid data type configurations:
54 * |src0 |src1 |src2 |dst |
55 * |:--------------|:--------------|:--------------|:--------------|
56 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
57 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
58 * |F16 |F16 |F16 |F16 |
59 * |F32 |F32 |F32 |F32 |
60 * |BFLOAT16 |BFLOAT16 |BFLOAT16 |BFLOAT16 |
61 *
62 * @param[in] src Source tensor info. 3 lower dimensions represent a single input [width, height, IFM],
63 * while every optional dimension from 4 and above represent a batch of inputs.
64 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
65 * @param[in] weights Weights tensor info. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
66 * Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
67 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
68 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
69 * @param[in] dst Destination tensor info. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
70 * Data types supported: Same as @p input.
71 * @param[in] info Contains padding and stride information described in @ref PadStrideInfo.
72 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010073 void configure(const ITensorInfo *src,
74 const ITensorInfo *weights,
75 const ITensorInfo *biases,
76 ITensorInfo *dst,
77 const Conv2dInfo &info);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010078 /** Static function to check if given info will lead to a valid configuration of @ref CpuGemmDirectConv2d
79 *
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +010080 * Similar to CpuGemmDirectConv2d::configure()
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010081 *
82 * @return a status
83 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010084 static Status validate(const ITensorInfo *src,
85 const ITensorInfo *weights,
86 const ITensorInfo *biases,
87 const ITensorInfo *dst,
88 const Conv2dInfo &info);
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010089
90 // Inherited methods overridden:
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010091 void run(ITensorPack &tensors) override;
92 void prepare(ITensorPack &constants) override;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010093 experimental::MemoryRequirements workspace() const override;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010094
95private:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010096 enum AuxTensorIdx
97 {
SiCong Lic5ab4df2023-10-17 17:38:57 +010098 GemmTemp0 = 0,
99 GemmTemp1,
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100100 Pretranspose,
SiCong Lic5ab4df2023-10-17 17:38:57 +0100101 /* Slots above (0-2) are reserved for CpuGemmAssemblyDispatch */
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100102 PermutedWeights,
103 Count
104 };
105
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100106 std::unique_ptr<CpuGemmAssemblyDispatch> _gemm_asm_func;
107 std::unique_ptr<CpuActivation> _activation_func;
108 std::unique_ptr<CpuPermute> _weights_permute_func;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100109 experimental::MemoryRequirements _aux_mem;
110 TensorInfo _perm_weights;
111 bool _run_activation;
112 bool _is_prepared;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100113};
114} // namespace cpu
115} // namespace arm_compute
116
SiCong Lic5ab4df2023-10-17 17:38:57 +0100117#endif // ACL_SRC_CPU_OPERATORS_CPUGEMMDIRECTCONV2D_H