blob: ac77acf69da44af775dea2fb1427d83583424950 [file] [log] [blame]
Anthony Barbier71d9b572018-07-06 17:05:59 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Anthony Barbier71d9b572018-07-06 17:05:59 +01003 *
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_NEGEMMASSEMBLYDISPATCH_H
25#define ARM_COMPUTE_NEGEMMASSEMBLYDISPATCH_H
Anthony Barbier71d9b572018-07-06 17:05:59 +010026
Anthony Barbier71d9b572018-07-06 17:05:59 +010027#include "arm_compute/runtime/IFunction.h"
28#include "arm_compute/runtime/IMemoryManager.h"
Michalis Spyrou1a569a32019-09-10 17:20:34 +010029#include "arm_compute/runtime/IWeightsManager.h"
Anthony Barbier71d9b572018-07-06 17:05:59 +010030#include "arm_compute/runtime/MemoryGroup.h"
31#include "arm_compute/runtime/Tensor.h"
32
Anthony Barbier71d9b572018-07-06 17:05:59 +010033namespace arm_compute
34{
35/** Assembly kernel glue */
Anthony Barbier71d9b572018-07-06 17:05:59 +010036class NEGEMMAssemblyDispatch : public IFunction
37{
38public:
Michalis Spyrou1a569a32019-09-10 17:20:34 +010039 /** Constructor */
40 NEGEMMAssemblyDispatch(std::shared_ptr<IMemoryManager> memory_manager = nullptr, IWeightsManager *weights_manager = nullptr);
Anthony Barbier71d9b572018-07-06 17:05:59 +010041 /** Prevent instances of this class from being copy constructed */
Anthony Barbiereaefd002018-07-20 17:49:35 +010042 NEGEMMAssemblyDispatch(const NEGEMMAssemblyDispatch &) = delete;
Anthony Barbier71d9b572018-07-06 17:05:59 +010043 /** Prevent instances of this class from being copied */
Anthony Barbiereaefd002018-07-20 17:49:35 +010044 NEGEMMAssemblyDispatch &operator=(const NEGEMMAssemblyDispatch &) = delete;
45 NEGEMMAssemblyDispatch(NEGEMMAssemblyDispatch &&) = default;
46 NEGEMMAssemblyDispatch &operator=(NEGEMMAssemblyDispatch &&) = default;
47 ~NEGEMMAssemblyDispatch() = default;
48
49 class IFallback
50 {
51 public:
52 virtual void run() = 0;
53 virtual void prepare() = 0;
54 virtual bool is_configured() const = 0;
55 virtual ~IFallback() = default;
56 };
Anthony Barbier71d9b572018-07-06 17:05:59 +010057
58private:
Anthony Barbiereaefd002018-07-20 17:49:35 +010059 /** Interface for the arm_gemm fallback */
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010060 std::unique_ptr<IFallback> _arm_gemm;
61 MemoryGroup _memory_group; /**< Function memory group */
62 IWeightsManager *_weights_manager; /**< Pointer to the weights manager */
Anthony Barbier71d9b572018-07-06 17:05:59 +010063public:
Michele Di Giorgio57f30a92020-09-08 14:03:51 +010064 /** If supported create a Compute Library function else fallback to the arm_gemm function.
Anthony Barbierc8e84b52018-07-17 16:48:42 +010065 *
Georgios Pinitas37d080f2019-06-21 18:43:12 +010066 * @param[in] a Input tensor (Matrix A)
67 * @param[in] b Input tensor (Matrix B)
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010068 * @param[in] c Input tensor (Matrix C) used to pass the bias for quantized calculations
Georgios Pinitas37d080f2019-06-21 18:43:12 +010069 * @param[out] d Output tensor to store the result of matrix multiplication. Data type supported: same as @p input0.
Georgios Pinitas37d080f2019-06-21 18:43:12 +010070 * @param[in] gemm_info GEMM meta-data
Anthony Barbierc8e84b52018-07-17 16:48:42 +010071 */
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010072 void configure(const ITensor *a, const ITensor *b, const ITensor *c, ITensor *d, const GEMMInfo &gemm_info);
Anthony Barbiereaefd002018-07-20 17:49:35 +010073
74 /** Indicates whether or not this function can be used to process the given parameters.
75 *
Georgios Pinitascfa2bba2019-06-27 17:00:52 +010076 * @param[in] a Input tensor info (Matrix A)
77 * @param[in] b Input tensor info (Matrix B)
78 * @param[in] c Input tensor info (Matrix C) used to pass the bias for quantized calculations
Georgios Pinitas37d080f2019-06-21 18:43:12 +010079 * @param[in] d Output tensor to store the result of matrix multiplication. Data type supported: same as @p input0.
Georgios Pinitas37d080f2019-06-21 18:43:12 +010080 * @param[in] gemm_info GEMM meta-data
Anthony Barbiereaefd002018-07-20 17:49:35 +010081 *
82 * @return a status.
83 */
Georgios Pinitas48b3ef82019-10-14 19:03:09 +010084 static Status validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *d, const GEMMInfo &gemm_info);
85 /** Checks if activation is supported by the gemm assembly dispatcher
86 *
87 * @param[in] activation Activation to check
88 *
89 * @return True if activation is supported else false
90 */
91 static bool is_activation_supported(const ActivationLayerInfo &activation);
Anthony Barbierc8e84b52018-07-17 16:48:42 +010092 /** Was the function successfully configured ?
93 *
94 * @return True if the function is configured and ready to run
95 */
Anthony Barbier71d9b572018-07-06 17:05:59 +010096 bool is_configured() const;
97 // Inherited methods overridden:
98 /** Runs a preparation step, usually for pre-transposing matrix b */
99 void prepare() override;
100 void run() override;
101};
Anthony Barbierc8e84b52018-07-17 16:48:42 +0100102} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000103#endif /* ARM_COMPUTE_NEGEMMASSEMBLYDISPATCH_H */