blob: 6e8f32ef4742cb8d84941ccf1a60f1ed93985637 [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/*
Mohammed Suhail Munshi066607f2022-01-19 12:22:50 +00002 * Copyright (c) 2018-2022 Arm Limited.
Pablo Telloeb82fd22018-02-23 13:43:50 +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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_ASSEMBLY_GEMM_KERNEL_WRAPPER_KERNEL_H
25#define ARM_COMPUTE_ASSEMBLY_GEMM_KERNEL_WRAPPER_KERNEL_H
Pablo Telloeb82fd22018-02-23 13:43:50 +000026
Pablo Telloeb82fd22018-02-23 13:43:50 +000027#include "arm_compute/core/Utils.h"
Georgios Pinitas3dbfd232019-01-30 17:17:16 +000028#include "arm_compute/core/Validate.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010029
Michalis Spyrouebcebf12020-10-21 00:04:14 +010030#include "src/core/NEON/INEKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010031#include "src/cpu/kernels/assembly/arm_gemm_compute_iface.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000032
Anthony Barbier71d9b572018-07-06 17:05:59 +010033#include "gemm_common.hpp"
34
Pablo Telloeb82fd22018-02-23 13:43:50 +000035namespace arm_compute
36{
37class ITensor;
38
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010039namespace cpu
40{
41namespace kernel
42{
Pablo Telloeb82fd22018-02-23 13:43:50 +000043/** This class is a wrapper for the assembly kernels.
44 *
45 * Some kernels were written in assembly and highly optimised for specific CPUs like A53 or A55.
46 * This class works as a wrapper for these assembly kernels. The arm compute library creates an instance
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010047 * of CpuGemmAssemblyWrapperKernel and other auxiliary data structures to execute a single assembly kernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000048 * in the context of an NEFunctions.
49 *
50 * The type T is the type of the actual kernel implemented in assembly which is of type
51 * template<typename To, typename Tr> class GemmCommon
52 *
53 *
54 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010055template <typename TypeInput, typename TypeOutput>
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010056class CpuGemmAssemblyWrapperKernel final : public INEKernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000057{
58public:
59 /** Constructor
60 */
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010061 CpuGemmAssemblyWrapperKernel() : _kernel(nullptr), _name("CpuGemmAssemblyWrapperKernel")
Georgios Pinitas3dbfd232019-01-30 17:17:16 +000062 {
63 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000064
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010065 CpuGemmAssemblyWrapperKernel(CpuGemmAssemblyWrapperKernel &) = delete;
66 CpuGemmAssemblyWrapperKernel(CpuGemmAssemblyWrapperKernel &&) = default;
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010067 CpuGemmAssemblyWrapperKernel &operator=(CpuGemmAssemblyWrapperKernel &) = delete;
Pablo Telloeb82fd22018-02-23 13:43:50 +000068
69 const char *name() const override
70 {
Gian Marco Iodicefed275d2019-08-06 10:44:02 +010071 return _name.c_str();
Pablo Telloeb82fd22018-02-23 13:43:50 +000072 }
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000073
Pablo Telloeb82fd22018-02-23 13:43:50 +000074 void run(const Window &window, const ThreadInfo &info) override
75 {
Georgios Pinitas3dbfd232019-01-30 17:17:16 +000076 ARM_COMPUTE_ERROR_ON_NULLPTR((reinterpret_cast<void *>(_kernel)));
Pablo Telloeb82fd22018-02-23 13:43:50 +000077 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000078
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +010079 auto win = arm_gemm::to_ndcoord(window);
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000080
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +010081 arm_gemm::ndcoord_t thread_locator{};
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000082
83 _kernel->execute(win, thread_locator, info.thread_id);
Pablo Telloeb82fd22018-02-23 13:43:50 +000084 }
Joseph Dobson6f8b17d2020-02-11 19:32:11 +000085
86 // Inherited methods overridden:
87 void run_nd(const Window &window, const ThreadInfo &info, const Window &thread_locator) override
88 {
89 ARM_COMPUTE_ERROR_ON_NULLPTR((reinterpret_cast<void *>(_kernel)));
90 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
91
92 //convert between arm_compute and arm_gemm types
93 auto ndc_win = arm_gemm::to_ndcoord(window);
94 auto ndc_tlc = arm_gemm::to_ndcoord(thread_locator);
95
96 _kernel->execute(ndc_win, ndc_tlc, info.thread_id);
97 }
98
Pablo Telloeb82fd22018-02-23 13:43:50 +000099 /** Initialise the kernel's input and output.
100 *
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100101 * @param[in] kernel Pointer to an assembly kernel implementation.
102 * @param[in] kernel_name_tag Tag to be attacehd to the kernel's name.
Pablo Telloeb82fd22018-02-23 13:43:50 +0000103 */
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000104 void configure(arm_gemm::GemmCommon<TypeInput, TypeOutput> *kernel, std::string kernel_name_tag)
Pablo Telloeb82fd22018-02-23 13:43:50 +0000105 {
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000106 ARM_COMPUTE_ERROR_ON_NULLPTR((reinterpret_cast<void *>(kernel)));
Michele Di Giorgio6ad60af2020-06-09 14:52:15 +0100107 _kernel = kernel;
Joseph Dobson6f8b17d2020-02-11 19:32:11 +0000108
109 Window win = to_window(kernel->get_window_size());
110
Pablo Telloeb82fd22018-02-23 13:43:50 +0000111 INEKernel::configure(win);
Gian Marco Iodicefed275d2019-08-06 10:44:02 +0100112
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100113 if (!kernel_name_tag.empty())
Gian Marco Iodicefed275d2019-08-06 10:44:02 +0100114 {
115 _name += "/" + kernel_name_tag;
116 }
Pablo Telloeb82fd22018-02-23 13:43:50 +0000117 }
Dana Zlotnik4cdd6b82021-10-07 15:31:54 +0300118 /** Return minimum workload size of the relevant kernel
119 *
120 * @param[in] platform The CPU platform used to create the context.
121 * @param[in] thread_count Number of threads in the execution.
122 *
Dana Zlotnikd7154db2021-11-10 11:50:58 +0200123 * @return[out] small_network_mws Minimum workload size for requested configuration.
Dana Zlotnik4cdd6b82021-10-07 15:31:54 +0300124 */
125 size_t get_mws(const CPUInfo &platform, size_t thread_count) const override
126 {
Dana Zlotnikd7154db2021-11-10 11:50:58 +0200127 ARM_COMPUTE_UNUSED(thread_count);
Mohammed Suhail Munshi066607f2022-01-19 12:22:50 +0000128 ARM_COMPUTE_UNUSED(platform);
129
130 return ICPPKernel::default_mws;
Dana Zlotnik4cdd6b82021-10-07 15:31:54 +0300131 }
Pablo Telloeb82fd22018-02-23 13:43:50 +0000132
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000133private:
134 arm_gemm::GemmCommon<TypeInput, TypeOutput> *_kernel;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100135 std::string _name;
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000136};
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100137} // namespace kernel
138} // namespace cpu
Pablo Telloeb82fd22018-02-23 13:43:50 +0000139} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000140#endif /* ARM_COMPUTE_ASSEMBLY_GEMM_KERNEL_WRAPPER_KERNEL_H */