blob: af383489a1a6f7d35f3d78c3dcba071c64602690 [file] [log] [blame]
Georgios Pinitas856f66e2021-04-22 21:13:21 +01001/*
2 * Copyright (c) 2021 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 */
24#ifndef ARM_COMPUTE_CL_UTILS_CL_AUX_TENSOR_HANDLER_H
25#define ARM_COMPUTE_CL_UTILS_CL_AUX_TENSOR_HANDLER_H
26
27#include "arm_compute/core/ITensorPack.h"
28#include "arm_compute/core/TensorInfo.h"
29#include "arm_compute/runtime/CL/CLTensor.h"
30
Georgios Pinitase92c23e2021-07-23 20:38:47 +010031#include "src/common/utils/Log.h"
Georgios Pinitas856f66e2021-04-22 21:13:21 +010032#include "support/Cast.h"
33
34namespace arm_compute
35{
36namespace opencl
37{
38/* Tensor handler to wrap and handle tensor allocations on workspace buffers */
39class CLAuxTensorHandler
40{
41public:
Georgios Pinitase92c23e2021-07-23 20:38:47 +010042 CLAuxTensorHandler(int slot_id, TensorInfo &info, ITensorPack &pack, bool pack_inject = false, bool bypass_alloc = false)
Georgios Pinitas856f66e2021-04-22 21:13:21 +010043 : _tensor()
44 {
Manuel Bottinicfac51c2021-06-18 15:47:28 +010045 if(info.total_size() == 0)
46 {
47 return;
48 }
Georgios Pinitas856f66e2021-04-22 21:13:21 +010049 _tensor.allocator()->soft_init(info);
50
51 ICLTensor *packed_tensor = utils::cast::polymorphic_downcast<ICLTensor *>(pack.get_tensor(slot_id));
52 if((packed_tensor == nullptr) || (info.total_size() > packed_tensor->info()->total_size()))
53 {
Georgios Pinitase92c23e2021-07-23 20:38:47 +010054 if(!bypass_alloc)
55 {
56 _tensor.allocator()->allocate();
57 ARM_COMPUTE_LOG_INFO_WITH_FUNCNAME_ACL("Allocating auxiliary tensor");
58 }
59
Georgios Pinitas856f66e2021-04-22 21:13:21 +010060 if(pack_inject)
61 {
62 pack.add_tensor(slot_id, &_tensor);
Sang-Hoon Park8b83d462021-05-25 13:12:47 +010063 _injected_tensor_pack = &pack;
64 _injected_slot_id = slot_id;
Georgios Pinitas856f66e2021-04-22 21:13:21 +010065 }
66 }
67 else
68 {
69 _tensor.allocator()->import_memory(packed_tensor->cl_buffer());
70 }
71 }
72
73 CLAuxTensorHandler(TensorInfo &info, ICLTensor &tensor)
74 : _tensor()
75 {
76 _tensor.allocator()->soft_init(info);
77 if(info.total_size() <= tensor.info()->total_size())
78 {
79 _tensor.allocator()->import_memory(tensor.cl_buffer());
80 }
81 }
82
Sang-Hoon Park8b83d462021-05-25 13:12:47 +010083 CLAuxTensorHandler(const CLAuxTensorHandler &) = delete;
84 CLAuxTensorHandler &operator=(const CLAuxTensorHandler) = delete;
85
86 ~CLAuxTensorHandler()
87 {
88 if(_injected_tensor_pack)
89 {
90 _injected_tensor_pack->remove_tensor(_injected_slot_id);
91 }
92 }
93
Georgios Pinitas856f66e2021-04-22 21:13:21 +010094 ICLTensor *get()
95 {
96 return &_tensor;
97 }
98
99 ICLTensor *operator()()
100 {
101 return &_tensor;
102 }
103
104private:
Sang-Hoon Park8b83d462021-05-25 13:12:47 +0100105 CLTensor _tensor{};
106 ITensorPack *_injected_tensor_pack{ nullptr };
107 int _injected_slot_id{ TensorType::ACL_UNKNOWN };
Georgios Pinitas856f66e2021-04-22 21:13:21 +0100108};
109} // namespace opencl
110} // namespace arm_compute
111#endif /* ARM_COMPUTE_CL_UTILS_CL_AUX_TENSOR_HANDLER_H */