blob: 00f91a0ffb07fa2cc8aab64eec182def8386aee5 [file] [log] [blame]
Georgios Pinitas99d40952018-04-23 16:26:46 +01001/*
SiCong Lia359ee92023-04-18 13:49:56 +01002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Georgios Pinitas99d40952018-04-23 16:26:46 +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/CLMemoryRegion.h"
25
26#include "arm_compute/core/Error.h"
27#include "arm_compute/runtime/CL/CLScheduler.h"
28
29namespace arm_compute
30{
Georgios Pinitas2cd5b312021-05-04 21:39:57 +010031ICLMemoryRegion::ICLMemoryRegion(size_t size)
Pablo Tellodb8485a2019-09-24 11:03:47 +010032 : IMemoryRegion(size),
Georgios Pinitas2cd5b312021-05-04 21:39:57 +010033 _ctx(CLScheduler::get().context()),
Pablo Tellodb8485a2019-09-24 11:03:47 +010034 _mapping(nullptr),
35 _mem()
Georgios Pinitas99d40952018-04-23 16:26:46 +010036{
37}
38
39const cl::Buffer &ICLMemoryRegion::cl_data() const
40{
41 return _mem;
42}
43
44void *ICLMemoryRegion::buffer()
45{
46 return _mapping;
47}
48
Georgios Pinitas74ef1db2020-01-20 17:01:15 +000049const void *ICLMemoryRegion::buffer() const
Georgios Pinitas99d40952018-04-23 16:26:46 +010050{
51 return _mapping;
52}
53
Georgios Pinitasdf310362018-11-14 13:16:56 +000054std::unique_ptr<IMemoryRegion> ICLMemoryRegion::extract_subregion(size_t offset, size_t size)
Georgios Pinitas99d40952018-04-23 16:26:46 +010055{
Georgios Pinitasdf310362018-11-14 13:16:56 +000056 ARM_COMPUTE_UNUSED(offset, size);
57 return nullptr;
Georgios Pinitas99d40952018-04-23 16:26:46 +010058}
59
Georgios Pinitas2cd5b312021-05-04 21:39:57 +010060CLBufferMemoryRegion::CLBufferMemoryRegion(cl_mem_flags flags, size_t size)
61 : ICLMemoryRegion(size)
Georgios Pinitas99d40952018-04-23 16:26:46 +010062{
63 if(_size != 0)
64 {
Georgios Pinitas2cd5b312021-05-04 21:39:57 +010065 _mem = cl::Buffer(CLScheduler::get().context(), flags, _size);
Georgios Pinitas99d40952018-04-23 16:26:46 +010066 }
67}
68
Georgios Pinitas2cd5b312021-05-04 21:39:57 +010069CLBufferMemoryRegion::CLBufferMemoryRegion(const cl::Buffer &buffer)
70 : ICLMemoryRegion(buffer.getInfo<CL_MEM_SIZE>())
Georgios Pinitasdf310362018-11-14 13:16:56 +000071{
72 _mem = buffer;
73}
74
SiCong Li7d91c612023-08-11 17:58:56 +010075CLBufferMemoryRegion::~CLBufferMemoryRegion()
76{
77 // Flush the command queue to ensure all commands that may use this memory buffer are scheduled to be finished before
78 // this buffer is freed
79 // Do not call finish as it is a blocking call which affects the performance
80 CLScheduler::get().queue().flush();
81}
82
Georgios Pinitas99d40952018-04-23 16:26:46 +010083void *CLBufferMemoryRegion::ptr()
84{
85 return nullptr;
86}
87
88void *CLBufferMemoryRegion::map(cl::CommandQueue &q, bool blocking)
89{
90 ARM_COMPUTE_ERROR_ON(_mem.get() == nullptr);
91 _mapping = q.enqueueMapBuffer(_mem, blocking ? CL_TRUE : CL_FALSE, CL_MAP_READ | CL_MAP_WRITE, 0, _size);
92 return _mapping;
93}
94
95void CLBufferMemoryRegion::unmap(cl::CommandQueue &q)
96{
97 ARM_COMPUTE_ERROR_ON(_mem.get() == nullptr);
98 q.enqueueUnmapMemObject(_mem, _mapping);
99 _mapping = nullptr;
100}
101
Georgios Pinitas2cd5b312021-05-04 21:39:57 +0100102ICLSVMMemoryRegion::ICLSVMMemoryRegion(cl_mem_flags flags, size_t size, size_t alignment)
103 : ICLMemoryRegion(size), _ptr(nullptr)
Georgios Pinitas99d40952018-04-23 16:26:46 +0100104{
105 if(size != 0)
106 {
Georgios Pinitas2cd5b312021-05-04 21:39:57 +0100107 _ptr = clSVMAlloc(CLScheduler::get().context().get(), flags, size, alignment);
Georgios Pinitas99d40952018-04-23 16:26:46 +0100108 if(_ptr != nullptr)
109 {
Georgios Pinitas2cd5b312021-05-04 21:39:57 +0100110 _mem = cl::Buffer(CLScheduler::get().context(), CL_MEM_READ_WRITE | CL_MEM_USE_HOST_PTR, _size, _ptr);
Georgios Pinitas99d40952018-04-23 16:26:46 +0100111 }
112 }
113}
114
115ICLSVMMemoryRegion::~ICLSVMMemoryRegion()
116{
117 if(_ptr != nullptr)
118 {
Georgios Pinitas5a1320b2019-06-27 17:50:43 +0100119 try
120 {
SiCong Li7d91c612023-08-11 17:58:56 +0100121 // Can only use the blocking finish instead of the non-blocking flush here, because clSVMFree requires all
122 // commands that may use the svm pointer to finish beforehand
123 // https://registry.khronos.org/OpenCL/sdk/3.0/docs/man/html/clSVMFree.html
SiCong Lia359ee92023-04-18 13:49:56 +0100124 clFinish(CLScheduler::get().queue().get());
Georgios Pinitas5a1320b2019-06-27 17:50:43 +0100125 _mem = cl::Buffer();
126 clSVMFree(_ctx.get(), _ptr);
127 }
128 catch(...)
129 {
130 }
Georgios Pinitas99d40952018-04-23 16:26:46 +0100131 }
132}
133
134void *ICLSVMMemoryRegion::ptr()
135{
136 return _ptr;
137}
138
Georgios Pinitas2cd5b312021-05-04 21:39:57 +0100139CLCoarseSVMMemoryRegion::CLCoarseSVMMemoryRegion(cl_mem_flags flags, size_t size, size_t alignment)
140 : ICLSVMMemoryRegion(flags, size, alignment)
Georgios Pinitas99d40952018-04-23 16:26:46 +0100141{
142}
143
144void *CLCoarseSVMMemoryRegion::map(cl::CommandQueue &q, bool blocking)
145{
146 ARM_COMPUTE_ERROR_ON(_ptr == nullptr);
147 clEnqueueSVMMap(q.get(), blocking ? CL_TRUE : CL_FALSE, CL_MAP_READ | CL_MAP_WRITE, _ptr, _size, 0, nullptr, nullptr);
148 _mapping = _ptr;
149 return _mapping;
150}
151
152void CLCoarseSVMMemoryRegion::unmap(cl::CommandQueue &q)
153{
154 ARM_COMPUTE_ERROR_ON(_ptr == nullptr);
155 clEnqueueSVMUnmap(q.get(), _ptr, 0, nullptr, nullptr);
156 _mapping = nullptr;
157}
158
Georgios Pinitas2cd5b312021-05-04 21:39:57 +0100159CLFineSVMMemoryRegion::CLFineSVMMemoryRegion(cl_mem_flags flags, size_t size, size_t alignment)
160 : ICLSVMMemoryRegion(flags, size, alignment)
Georgios Pinitas99d40952018-04-23 16:26:46 +0100161{
162}
163
164void *CLFineSVMMemoryRegion::map(cl::CommandQueue &q, bool blocking)
165{
166 if(blocking)
167 {
168 clFinish(q.get());
169 }
170 _mapping = _ptr;
171 return _mapping;
172}
173
174void CLFineSVMMemoryRegion::unmap(cl::CommandQueue &q)
175{
176 ARM_COMPUTE_UNUSED(q);
177 _mapping = nullptr;
178}
Pablo Tellodb8485a2019-09-24 11:03:47 +0100179} // namespace arm_compute