blob: ff8b0b143f6c42f64656fba02befd0b5f31e978f [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/*
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +01002 * Copyright (c) 2018-2021 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"
Michalis Spyrouebcebf12020-10-21 00:04:14 +010029#include "src/core/NEON/INEKernel.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010030#include "src/cpu/kernels/assembly/arm_gemm_compute_iface.hpp"
Pablo Telloeb82fd22018-02-23 13:43:50 +000031
Anthony Barbier71d9b572018-07-06 17:05:59 +010032#include "gemm_common.hpp"
33
Pablo Telloeb82fd22018-02-23 13:43:50 +000034namespace arm_compute
35{
36class ITensor;
37
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010038namespace cpu
39{
40namespace kernel
41{
Pablo Telloeb82fd22018-02-23 13:43:50 +000042/** This class is a wrapper for the assembly kernels.
43 *
44 * Some kernels were written in assembly and highly optimised for specific CPUs like A53 or A55.
45 * 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 +010046 * of CpuGemmAssemblyWrapperKernel and other auxiliary data structures to execute a single assembly kernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000047 * in the context of an NEFunctions.
48 *
49 * The type T is the type of the actual kernel implemented in assembly which is of type
50 * template<typename To, typename Tr> class GemmCommon
51 *
52 *
53 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010054template <typename TypeInput, typename TypeOutput>
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010055class CpuGemmAssemblyWrapperKernel final : public INEKernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000056{
57public:
58 /** Constructor
59 */
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010060 CpuGemmAssemblyWrapperKernel()
61 : _kernel(nullptr), _name("CpuGemmAssemblyWrapperKernel")
Georgios Pinitas3dbfd232019-01-30 17:17:16 +000062 {
63 }
Pablo Telloeb82fd22018-02-23 13:43:50 +000064
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +010065 CpuGemmAssemblyWrapperKernel(CpuGemmAssemblyWrapperKernel &) = delete;
66 CpuGemmAssemblyWrapperKernel(CpuGemmAssemblyWrapperKernel &&) = default;
67 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
113 if(!kernel_name_tag.empty())
114 {
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 *
123 * @return[out] small_network_mws Minimum workload size for requsted configuration.
124 */
125 size_t get_mws(const CPUInfo &platform, size_t thread_count) const override
126 {
127 ARM_COMPUTE_UNUSED(platform, thread_count);
128
129 return ICPPKernel::small_network_mws;
130 }
Pablo Telloeb82fd22018-02-23 13:43:50 +0000131
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000132private:
133 arm_gemm::GemmCommon<TypeInput, TypeOutput> *_kernel;
Gian Marco Iodicefed275d2019-08-06 10:44:02 +0100134 std::string _name;
Georgios Pinitas3dbfd232019-01-30 17:17:16 +0000135};
Sang-Hoon Park4f7693d2021-05-12 13:59:10 +0100136} // namespace kernel
137} // namespace cpu
Pablo Telloeb82fd22018-02-23 13:43:50 +0000138} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000139#endif /* ARM_COMPUTE_ASSEMBLY_GEMM_KERNEL_WRAPPER_KERNEL_H */