blob: 427ea51ab99e461c89a3d6aa6786c7beaba70725 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gunes Bayir4bfc70e2021-12-10 16:17:56 +00002 * Copyright (c) 2017-2022 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
24#include "arm_compute/runtime/CL/functions/CLGEMM.h"
25
Georgios Pinitas856f66e2021-04-22 21:13:21 +010026#include "arm_compute/core/CL/CLHelpers.h"
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010027#include "arm_compute/core/CL/CLKernelLibrary.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010028#include "arm_compute/core/Helpers.h"
Gian Marco Iodice7026b302019-06-26 17:18:11 +010029#include "arm_compute/core/KernelDescriptors.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
Gian Marco Iodicebb36a8e2018-04-19 12:05:08 +010032#include "arm_compute/core/Utils.h"
Georgios Pinitas856f66e2021-04-22 21:13:21 +010033#include "src/core/helpers/MemoryHelpers.h"
Georgios Pinitas7891a732021-08-20 21:39:25 +010034#include "src/gpu/cl/operators/ClGemm.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035
giuros011c9efeb2019-01-11 14:04:43 +000036namespace arm_compute
37{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010038using namespace arm_compute::experimental;
39using OperatorType = opencl::ClGemm;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040
Georgios Pinitas856f66e2021-04-22 21:13:21 +010041struct CLGEMM::Impl
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010042{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010043 const ICLTensor *b{ nullptr };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010044 std::unique_ptr<OperatorType> op{ nullptr };
45 MemoryGroup memory_group{};
46 IWeightsManager *weights_manager{ nullptr };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010047 ITensorPack run_pack{};
48 ITensorPack prep_pack{};
49 MemoryRequirements aux_mem_req{};
50 WorkspaceData<CLTensor> workspace_tensors{};
Georgios Pinitas5a643322021-06-04 16:48:30 +010051 bool is_prepared{ false };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010052};
SiCong Libd8b1e22021-02-04 13:07:09 +000053
Michalis Spyroub27e13a2019-09-27 11:04:27 +010054CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010055 : _impl(std::make_unique<Impl>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010057 _impl->memory_group = MemoryGroup(memory_manager);
58 _impl->weights_manager = weights_manager;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059}
60
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010061CLGEMM::~CLGEMM() = default;
62
Gian Marco Iodice926afe12019-03-19 11:44:13 +000063void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
64{
Manuel Bottini2b84be52020-04-08 10:15:51 +010065 configure(CLKernelLibrary::get().get_compile_context(), a, b, c, output, alpha, beta, gemm_info);
66}
67
68void CLGEMM::configure(const CLCompileContext &compile_context, const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
69{
Gian Marco Iodice926afe12019-03-19 11:44:13 +000070 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
71
Georgios Pinitas5a643322021-06-04 16:48:30 +010072 _impl->b = b;
Georgios Pinitas5a643322021-06-04 16:48:30 +010073 _impl->op = std::make_unique<OperatorType>();
74 _impl->is_prepared = gemm_info.retain_internal_weights();
Gian Marco Iodice926afe12019-03-19 11:44:13 +000075
Georgios Pinitas856f66e2021-04-22 21:13:21 +010076 _impl->op->configure(compile_context, a->info(), b->info(), c != nullptr ? c->info() : nullptr, output->info(), alpha, beta, gemm_info);
77 _impl->aux_mem_req = _impl->op->workspace();
Gian Marco Iodice926afe12019-03-19 11:44:13 +000078
Georgios Pinitas856f66e2021-04-22 21:13:21 +010079 // Manage/allocate auxilairy tensors
Georgios Pinitas5a643322021-06-04 16:48:30 +010080 if(_impl->is_prepared)
81 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010082 _impl->run_pack.add_const_tensor(ACL_SRC_0, a);
83 _impl->run_pack.add_tensor(ACL_DST, output);
Georgios Pinitas5a643322021-06-04 16:48:30 +010084 }
85 else
86 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010087 _impl->run_pack = { { ACL_SRC_0, a }, { ACL_SRC_2, c }, { ACL_DST, output } };
Georgios Pinitas5a643322021-06-04 16:48:30 +010088 _impl->prep_pack = { { ACL_SRC_1, _impl->b } };
89
90 _impl->workspace_tensors = manage_workspace<CLTensor>(_impl->op->workspace(), _impl->memory_group, _impl->run_pack, _impl->prep_pack);
91 }
Gian Marco Iodice926afe12019-03-19 11:44:13 +000092}
93
94Status CLGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
95{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010096 return OperatorType::validate(a, b, c, output, alpha, beta, gemm_info);
Gian Marco Iodice926afe12019-03-19 11:44:13 +000097}
98
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099void CLGEMM::run()
100{
Georgios Pinitase0437672018-05-02 14:07:55 +0100101 prepare();
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100102
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100103 MemoryGroupResourceScope scope_mg(_impl->memory_group);
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000104
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100105 _impl->op->run(_impl->run_pack);
Georgios Pinitase0437672018-05-02 14:07:55 +0100106}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100107
Georgios Pinitase0437672018-05-02 14:07:55 +0100108void CLGEMM::prepare()
109{
Georgios Pinitas5a643322021-06-04 16:48:30 +0100110 if(!_impl->is_prepared)
Georgios Pinitase0437672018-05-02 14:07:55 +0100111 {
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100112 _impl->op->prepare(_impl->prep_pack);
113
114 auto has_reshape = std::find_if(_impl->aux_mem_req.begin(),
115 _impl->aux_mem_req.end(),
116 [](const MemoryInfo & m) -> bool { return m.lifetime == MemoryLifetime::Persistent; });
117
118 if(has_reshape != std::end(_impl->aux_mem_req))
Georgios Pinitase0437672018-05-02 14:07:55 +0100119 {
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100120 _impl->b->mark_as_unused();
Georgios Pinitase0437672018-05-02 14:07:55 +0100121 }
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100122 else
123 {
124 // Pack the B matrix to be used as the underlying GEMM performs no reshapes
125 _impl->run_pack.add_const_tensor(ACL_SRC_1, _impl->b);
126 }
Georgios Pinitas5a643322021-06-04 16:48:30 +0100127 _impl->is_prepared = true;
Georgios Pinitase0437672018-05-02 14:07:55 +0100128 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129}
giuros011c9efeb2019-01-11 14:04:43 +0000130} // namespace arm_compute