blob: 14b0633e094cf35838200bf6c02821193c042225 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
SiCong Libd8b1e22021-02-04 13:07:09 +00002 * Copyright (c) 2017-2021 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 "arm_compute/runtime/CL/functions/CLGEMM.h"
34#include "src/core/helpers/MemoryHelpers.h"
35#include "src/runtime/gpu/cl/operators/ClGemm.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036
giuros011c9efeb2019-01-11 14:04:43 +000037namespace arm_compute
38{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010039using namespace arm_compute::experimental;
40using OperatorType = opencl::ClGemm;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
Georgios Pinitas856f66e2021-04-22 21:13:21 +010042struct CLGEMM::Impl
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010043{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010044 const ICLTensor *b{ nullptr };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010045 std::unique_ptr<OperatorType> op{ nullptr };
46 MemoryGroup memory_group{};
47 IWeightsManager *weights_manager{ nullptr };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010048 ITensorPack run_pack{};
49 ITensorPack prep_pack{};
50 MemoryRequirements aux_mem_req{};
51 WorkspaceData<CLTensor> workspace_tensors{};
Georgios Pinitas5a643322021-06-04 16:48:30 +010052 bool is_prepared{ false };
Georgios Pinitas856f66e2021-04-22 21:13:21 +010053};
SiCong Libd8b1e22021-02-04 13:07:09 +000054
Michalis Spyroub27e13a2019-09-27 11:04:27 +010055CLGEMM::CLGEMM(std::shared_ptr<IMemoryManager> memory_manager, IWeightsManager *weights_manager)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010056 : _impl(std::make_unique<Impl>())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010058 _impl->memory_group = MemoryGroup(memory_manager);
59 _impl->weights_manager = weights_manager;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060}
61
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010062CLGEMM::~CLGEMM() = default;
63
Gian Marco Iodice926afe12019-03-19 11:44:13 +000064void CLGEMM::configure(const ICLTensor *a, const ICLTensor *b, const ICLTensor *c, ICLTensor *output, float alpha, float beta, const GEMMInfo &gemm_info)
65{
Manuel Bottini2b84be52020-04-08 10:15:51 +010066 configure(CLKernelLibrary::get().get_compile_context(), a, b, c, output, alpha, beta, gemm_info);
67}
68
69void 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)
70{
Gian Marco Iodice926afe12019-03-19 11:44:13 +000071 ARM_COMPUTE_ERROR_ON_NULLPTR(a, b, output);
72
Georgios Pinitas5a643322021-06-04 16:48:30 +010073 _impl->b = b;
Georgios Pinitas5a643322021-06-04 16:48:30 +010074 _impl->op = std::make_unique<OperatorType>();
75 _impl->is_prepared = gemm_info.retain_internal_weights();
Gian Marco Iodice926afe12019-03-19 11:44:13 +000076
Georgios Pinitas856f66e2021-04-22 21:13:21 +010077 _impl->op->configure(compile_context, a->info(), b->info(), c != nullptr ? c->info() : nullptr, output->info(), alpha, beta, gemm_info);
78 _impl->aux_mem_req = _impl->op->workspace();
Gian Marco Iodice926afe12019-03-19 11:44:13 +000079
Georgios Pinitas856f66e2021-04-22 21:13:21 +010080 // Manage/allocate auxilairy tensors
Georgios Pinitas5a643322021-06-04 16:48:30 +010081 if(_impl->is_prepared)
82 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010083 _impl->run_pack.add_const_tensor(ACL_SRC_0, a);
84 _impl->run_pack.add_tensor(ACL_DST, output);
Georgios Pinitas5a643322021-06-04 16:48:30 +010085 }
86 else
87 {
Michele Di Giorgiod7316eb2021-06-16 11:14:41 +010088 _impl->run_pack = { { ACL_SRC_0, a }, { ACL_SRC_2, c }, { ACL_DST, output } };
Georgios Pinitas5a643322021-06-04 16:48:30 +010089 _impl->prep_pack = { { ACL_SRC_1, _impl->b } };
90
91 _impl->workspace_tensors = manage_workspace<CLTensor>(_impl->op->workspace(), _impl->memory_group, _impl->run_pack, _impl->prep_pack);
92 }
Gian Marco Iodice926afe12019-03-19 11:44:13 +000093}
94
95Status CLGEMM::validate(const ITensorInfo *a, const ITensorInfo *b, const ITensorInfo *c, const ITensorInfo *output, float alpha, float beta, const GEMMInfo &gemm_info)
96{
Georgios Pinitas856f66e2021-04-22 21:13:21 +010097 return OperatorType::validate(a, b, c, output, alpha, beta, gemm_info);
Gian Marco Iodice926afe12019-03-19 11:44:13 +000098}
99
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100void CLGEMM::run()
101{
Georgios Pinitase0437672018-05-02 14:07:55 +0100102 prepare();
Georgios Pinitas8a94e7c2017-09-15 19:06:47 +0100103
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100104 MemoryGroupResourceScope scope_mg(_impl->memory_group);
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000105
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100106 _impl->op->run(_impl->run_pack);
Georgios Pinitase0437672018-05-02 14:07:55 +0100107}
Georgios Pinitas82b51482018-04-24 15:14:12 +0100108
Georgios Pinitase0437672018-05-02 14:07:55 +0100109void CLGEMM::prepare()
110{
Georgios Pinitas5a643322021-06-04 16:48:30 +0100111 if(!_impl->is_prepared)
Georgios Pinitase0437672018-05-02 14:07:55 +0100112 {
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100113 _impl->op->prepare(_impl->prep_pack);
114
115 auto has_reshape = std::find_if(_impl->aux_mem_req.begin(),
116 _impl->aux_mem_req.end(),
117 [](const MemoryInfo & m) -> bool { return m.lifetime == MemoryLifetime::Persistent; });
118
119 if(has_reshape != std::end(_impl->aux_mem_req))
Georgios Pinitase0437672018-05-02 14:07:55 +0100120 {
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100121 _impl->b->mark_as_unused();
Georgios Pinitase0437672018-05-02 14:07:55 +0100122 }
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100123 else
124 {
125 // Pack the B matrix to be used as the underlying GEMM performs no reshapes
126 _impl->run_pack.add_const_tensor(ACL_SRC_1, _impl->b);
127 }
Georgios Pinitas5a643322021-06-04 16:48:30 +0100128 _impl->is_prepared = true;
Georgios Pinitase0437672018-05-02 14:07:55 +0100129 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130}
giuros011c9efeb2019-01-11 14:04:43 +0000131} // namespace arm_compute