blob: b572f36a3a3bbd8b5f5c1ab5dbf7c5ec7a4863c5 [file] [log] [blame]
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +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_CPU_GEMM_DIRECT_CONV_2D_H
25#define ARM_COMPUTE_CPU_GEMM_DIRECT_CONV_2D_H
26
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010027#include "arm_compute/core/TensorInfo.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010028#include "src/core/common/Macros.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010029#include "src/runtime/cpu/ICpuOperator.h"
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010030#include "src/runtime/cpu/operators/CpuActivation.h"
31#include "src/runtime/cpu/operators/CpuPermute.h"
32#include "src/runtime/cpu/operators/internal/CpuGemmAssemblyDispatch.h"
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010033
34namespace arm_compute
35{
36// Forward declarations
37class ITensor;
38struct Conv2dInfo;
39namespace cpu
40{
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010041class CpuGemmDirectConv2d : public ICpuOperator
42{
43public:
44 /** Constructor */
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);
47 /** Destructor */
48 ~CpuGemmDirectConv2d();
49 /** Set the input and output tensors.
50 *
51 * Valid data layouts:
52 * - All
53 *
54 * Valid data type configurations:
55 * |src0 |src1 |src2 |dst |
56 * |:--------------|:--------------|:--------------|:--------------|
57 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
58 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
59 * |F16 |F16 |F16 |F16 |
60 * |F32 |F32 |F32 |F32 |
61 * |BFLOAT16 |BFLOAT16 |BFLOAT16 |BFLOAT16 |
62 *
63 * @param[in] src Source tensor info. 3 lower dimensions represent a single input [width, height, IFM],
64 * while every optional dimension from 4 and above represent a batch of inputs.
65 * Data types supported: QASYMM8/QASYMM8_SIGNED/BFLOAT16/F16/F32.
66 * @param[in] weights Weights tensor info. Weights are 4D tensor with dimensions [kernel_x, kernel_y, IFM, OFM].
67 * Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM8_PER_CHANNEL/BFLOAT16/F16/F32.
68 * @param[in] biases Biases tensor info. Shared biases supported. Biases are 1D tensor with dimensions [OFM].
69 * Data type supported: Should match @p input data type, except for input of QASYMM8/QASYMM8_SIGNED type where biases should be of S32 type.
70 * @param[in] dst Destination tensor info. 3 lower dimensions represent a single output [width, height, OFM], while the rest represent batch of outputs.
71 * Data types supported: Same as @p input.
72 * @param[in] info Contains padding and stride information described in @ref PadStrideInfo.
73 */
74 void configure(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, ITensorInfo *dst, const Conv2dInfo &info);
75 /** Static function to check if given info will lead to a valid configuration of @ref CpuGemmDirectConv2d
76 *
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +010077 * Similar to CpuGemmDirectConv2d::configure()
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010078 *
79 * @return a status
80 */
81 static Status validate(const ITensorInfo *src, const ITensorInfo *weights, const ITensorInfo *biases, const ITensorInfo *dst, const Conv2dInfo &info);
82
83 // Inherited methods overridden:
Michele Di Giorgio8ae3cda2021-06-07 15:30:26 +010084 void run(ITensorPack &tensors) override;
85 void prepare(ITensorPack &constants) override;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010086 experimental::MemoryRequirements workspace() const override;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010087
88private:
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010089 enum AuxTensorIdx
90 {
91 AsmGemmWorkspace = 0,
92 Pretranspose,
93 PermutedWeights,
94 Count
95 };
96
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +010097 std::unique_ptr<CpuGemmAssemblyDispatch> _gemm_asm_func;
98 std::unique_ptr<CpuActivation> _activation_func;
99 std::unique_ptr<CpuPermute> _weights_permute_func;
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +0100100 experimental::MemoryRequirements _aux_mem;
101 TensorInfo _perm_weights;
102 bool _run_activation;
103 bool _is_prepared;
Sang-Hoon Parkd89e2fa2021-05-17 17:04:50 +0100104};
105} // namespace cpu
106} // namespace arm_compute
107
108#endif /* ARM_COMPUTE_CPU_GEMM_DIRECT_CONV_2D_H */