blob: ff3b30f8ae6402aed50303072f54c07b4704a509 [file] [log] [blame]
Sheri Zhang6d9c9822021-09-24 16:02:57 +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_DIRECT_CONV3D_KERNEL_H
25#define ARM_COMPUTE_CPU_DIRECT_CONV3D_KERNEL_H
26
27#include "arm_compute/runtime/FunctionDescriptors.h"
28#include "src/core/common/Macros.h"
29#include "src/cpu/ICpuKernel.h"
30namespace arm_compute
31{
32namespace cpu
33{
34namespace kernels
35{
36/** Interface for the kernel to perform 3D Direct Convolution Layer. */
37class CpuDirectConv3dKernel : public ICpuKernel
38{
39public:
40 CpuDirectConv3dKernel() = default;
41 ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE(CpuDirectConv3dKernel);
Sheri Zhang5dda2172021-10-15 19:54:17 +010042 /** Set the src, weights, biases and dst tensor info.
Sheri Zhang6d9c9822021-09-24 16:02:57 +010043 *
44 * Valid data type configurations:
45 * |src0 |src1 |src2 |dst |
46 * |:--------------|:------------------|:------|:--------------|
47 * |F16 |F16 |F16 |F16 |
48 * |F32 |F32 |F32 |F32 |
Freddie Liardetf727ef42021-10-18 13:28:57 +010049 * |QASYMM8 |QASYMM8 |S32 |QASYMM8 |
50 * |QASYMM8_SIGNED |QASYMM8_SIGNED |S32 |QASYMM8_SIGNED |
Sheri Zhang6d9c9822021-09-24 16:02:57 +010051 *
Sheri Zhang5dda2172021-10-15 19:54:17 +010052 * @param[in, out] src0 Input tensor info.
53 * @param[in] src1 Set of kernels to convolve the input volume.
Sheri Zhang6d9c9822021-09-24 16:02:57 +010054 * The 2nd dimension must be the same as the input's volume 1st dimension.
Sheri Zhang5dda2172021-10-15 19:54:17 +010055 * @param[in] src2 Set of biases. Can be nullptr.
Sheri Zhang6d9c9822021-09-24 16:02:57 +010056 * @param[out] dst Output tensor info.
57 * The 1st dimensions must be equal to the 1st dimension of the @p kernels tensor.
58 * @param[in] conv_info Contains padding, stride, acitvation information.
59 *
60 */
Sheri Zhang5dda2172021-10-15 19:54:17 +010061 void configure(const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *src2, ITensorInfo *dst, const Conv3dInfo &conv_info);
Sheri Zhang6d9c9822021-09-24 16:02:57 +010062 /** Static function to check if given info will lead to a valid configuration
63 *
64 * Similar to CpuDirectConv3dKernel::configure()
65 *
66 * @return a status
67 */
Sheri Zhang5dda2172021-10-15 19:54:17 +010068 static Status validate(const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *src2, const ITensorInfo *dst, const Conv3dInfo &conv_info);
Sheri Zhang6d9c9822021-09-24 16:02:57 +010069
70 // Inherited methods overridden:
71 void run_op(ITensorPack &tensors, const Window &window, const ThreadInfo &info) override;
72 const char *name() const override;
73
74private:
Sheri Zhang5dda2172021-10-15 19:54:17 +010075 /* Template function for convolution 3d NDHWC */
76 using DirectConv3dKernelPtr = std::add_pointer<void(const ITensor *, const ITensor *, const ITensor *, ITensor *, const Conv3dInfo &, const Window &)>::type;
Sheri Zhang6d9c9822021-09-24 16:02:57 +010077
Sheri Zhang5dda2172021-10-15 19:54:17 +010078 Conv3dInfo _conv_info{};
79 DirectConv3dKernelPtr _run_method{ nullptr };
80 std::string _name{};
Sheri Zhang6d9c9822021-09-24 16:02:57 +010081};
82} // namespace kernels
83} // namespace cpu
84} // namespace arm_compute
85#endif /*ARM_COMPUTE_CPU_DIRECTCONV3D_KERNEL_H */