blob: 893260362a49834a3702deab4230d43b57278f7e [file] [log] [blame]
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +00001/*
Pablo Marquez Tello7976f082024-02-13 13:56:15 +00002 * Copyright (c) 2021-2024 Arm Limited.
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +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
Michael Tyler74921ee2023-04-12 17:43:17 +010025#include "utils.hpp"
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000026#include "src/core/NEON/kernels/arm_conv/depthwise/interleaves/list.hpp"
27
28#include <cstdint>
29
30#pragma once
31
32#if defined(__aarch64__)
33
34namespace arm_conv {
35namespace depthwise {
36
Pablo Marquez Tello7976f082024-02-13 13:56:15 +000037void a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst_impl(
38 const unsigned int,
39 const int8_t *const *const,
40 const int8_t *const,
41 const int32_t *const,
42 const arm_gemm::Requantize32 &,
43 const int32_t *const,
44 const int32_t *const,
45 int8_t *const *const
46);
47
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000048
ramelg018a164882022-04-07 02:42:52 +010049class a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst : public DepthwiseDepthfirstStrategy<int8_t, int8_t, int8_t, int32_t>
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000050{
ramelg018a164882022-04-07 02:42:52 +010051 using Parent = DepthwiseDepthfirstStrategy<int8_t, int8_t, int8_t, int32_t>;
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000052
ramelg018a164882022-04-07 02:42:52 +010053 public:
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000054 constexpr static unsigned int kernel_rows = 3;
55 constexpr static unsigned int kernel_cols = 3;
56
57 constexpr static unsigned int stride_rows = 2;
58 constexpr static unsigned int stride_cols = 2;
59
ramelg018a164882022-04-07 02:42:52 +010060 a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst(const CPUInfo *) : Parent(2, 2, 3, 3, 2, 2) {}
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000061
ramelg018a164882022-04-07 02:42:52 +010062 arm_gemm::VLType get_vl_type(void) const override { return arm_gemm::VLType::None; }
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000063
ramelg018a164882022-04-07 02:42:52 +010064 Parent::KernelType kernel = a64_s8q_nhwc_3x3_s2_output2x2_mla_depthfirst_impl;
65 Parent::KernelType get_kernel(void) const override { return kernel; }
66 unsigned int get_accumulator_depth_vl(void) const override { return 2; }
Michele Di Giorgiod02d5ed2021-01-22 09:47:04 +000067};
68
69} // namespace depthwise
70} // namespace arm_conv
71
72#endif // defined(__aarch64__)