blob: 9eaf6061d859e40cbaa2421031ee4d8238da9447 [file] [log] [blame]
Pablo Telloeb82fd22018-02-23 13:43:50 +00001/*
2 * Copyright (c) 2018 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 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010024#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
27#include "arm_compute/core/NEON/INEKernel.h"
28#include "arm_compute/core/Validate.h"
29#include "arm_compute/core/Utils.h"
30
Anthony Barbier71d9b572018-07-06 17:05:59 +010031#include "gemm_common.hpp"
32
Pablo Telloeb82fd22018-02-23 13:43:50 +000033namespace arm_compute
34{
35class ITensor;
36
37/** This class is a wrapper for the assembly kernels.
38 *
39 * Some kernels were written in assembly and highly optimised for specific CPUs like A53 or A55.
40 * This class works as a wrapper for these assembly kernels. The arm compute library creates an instance
Anthony Barbier71d9b572018-07-06 17:05:59 +010041 * of NEGEMMAssemblyWrapperKernel and other auxiliary data structures to execute a single assembly kernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000042 * in the context of an NEFunctions.
43 *
44 * The type T is the type of the actual kernel implemented in assembly which is of type
45 * template<typename To, typename Tr> class GemmCommon
46 *
47 *
48 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010049template <typename TypeInput, typename TypeOutput>
50class NEGEMMAssemblyWrapperKernel final : public INEKernel
Pablo Telloeb82fd22018-02-23 13:43:50 +000051{
52public:
53 /** Constructor
54 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010055 NEGEMMAssemblyWrapperKernel() : _kernel(nullptr) {}
Pablo Telloeb82fd22018-02-23 13:43:50 +000056
Anthony Barbier71d9b572018-07-06 17:05:59 +010057 NEGEMMAssemblyWrapperKernel(NEGEMMAssemblyWrapperKernel &) = delete;
58 NEGEMMAssemblyWrapperKernel(NEGEMMAssemblyWrapperKernel &&) = default;
59 NEGEMMAssemblyWrapperKernel & operator=(NEGEMMAssemblyWrapperKernel &) = delete;
Pablo Telloeb82fd22018-02-23 13:43:50 +000060
61 const char *name() const override
62 {
Anthony Barbier71d9b572018-07-06 17:05:59 +010063 return "NEGEMMAssemblyWrapperKernel";
Pablo Telloeb82fd22018-02-23 13:43:50 +000064 }
65 // Inherited methods overridden:
66 void run(const Window &window, const ThreadInfo &info) override
67 {
68 ARM_COMPUTE_ERROR_ON_NULLPTR((reinterpret_cast<void*>(_kernel)));
69 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
70 auto first = window.x().start();
71 auto last = window.x().end();
72 _kernel->execute(first, last, info.thread_id);
73 }
74 /** Initialise the kernel's input and output.
75 *
76 * @param[in] kernel Pointer to an assembly kernel implementation.
77 * @param[in] num_threads Number of concurrent threads which will execute the kernel.
78 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010079 void configure(arm_gemm::GemmCommon<TypeInput, TypeOutput> *kernel)
Pablo Telloeb82fd22018-02-23 13:43:50 +000080 {
81 ARM_COMPUTE_ERROR_ON_NULLPTR((reinterpret_cast<void*>(kernel)));
82 _kernel = kernel;
83 auto win_last = _kernel->get_window_size();
84 Window win;
85 win.set(Window::DimX, Window::Dimension(0, win_last, 1));
86 INEKernel::configure(win);
87 }
88private:
Anthony Barbier71d9b572018-07-06 17:05:59 +010089 arm_gemm::GemmCommon<TypeInput, TypeOutput>* _kernel;
Pablo Telloeb82fd22018-02-23 13:43:50 +000090};
91
92} // namespace arm_compute
Anthony Barbier71d9b572018-07-06 17:05:59 +010093#endif /* __ARM_COMPUTE_ASSEMBLY_GEMM_KERNEL_WRAPPER_KERNEL_H__ */