Compute Library
 23.11
CLTensor.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2019 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  */
25 
28 
29 namespace arm_compute
30 {
32  : _allocator(this, static_cast<CLRuntimeContext *>(ctx)), _ctx(static_cast<CLRuntimeContext *>(ctx))
33 {
34 }
35 
37 {
38  return _ctx;
39 }
40 
42 {
43  return &_allocator.info();
44 }
45 
47 {
48  return &_allocator.info();
49 }
50 
51 const cl::Buffer &CLTensor::cl_buffer() const
52 {
53  return _allocator.cl_data();
54 }
55 
57 {
58  return _allocator.quantization();
59 }
60 
62 {
63  return &_allocator;
64 }
65 
66 void CLTensor::map(bool blocking)
67 {
68  ICLTensor::map(_ctx == nullptr ? CLScheduler::get().queue() : _ctx->gpu_scheduler()->queue(), blocking);
69 }
70 
72 {
73  ICLTensor::unmap(_ctx == nullptr ? CLScheduler::get().queue() : _ctx->gpu_scheduler()->queue());
74 }
75 
76 uint8_t *CLTensor::do_map(cl::CommandQueue &q, bool blocking)
77 {
78  return _allocator.map(q, blocking);
79 }
80 
81 void CLTensor::do_unmap(cl::CommandQueue &q)
82 {
83  _allocator.unmap(q, buffer());
84 }
85 
87 {
88  _allocator.set_associated_memory_group(memory_group);
89 }
90 } // namespace arm_compute
arm_compute::CLTensor::unmap
void unmap()
Enqueue an unmap operation of the allocated and mapped buffer.
Definition: CLTensor.cpp:71
arm_compute::ICLTensor::map
void map(cl::CommandQueue &q, bool blocking=true)
Enqueue a map operation of the allocated buffer on the given queue.
Definition: ICLTensor.cpp:34
CLRuntimeContext.h
arm_compute::CLRuntimeContext::gpu_scheduler
CLScheduler * gpu_scheduler()
Definition: CLRuntimeContext.cpp:60
arm_compute::CLTensorAllocator::set_associated_memory_group
void set_associated_memory_group(IMemoryGroup *associated_memory_group)
Associates the tensor with a memory group.
Definition: CLTensorAllocator.cpp:184
arm_compute::CLTensorAllocator::quantization
CLQuantization quantization() const
Wrapped quantization info data accessor.
Definition: CLTensorAllocator.cpp:116
arm_compute::CLTensor::quantization
CLQuantization quantization() const override
Interface to be implemented by the child class to return the wrapped quantization info data.
Definition: CLTensor.cpp:56
arm_compute::CLTensor::map
void map(bool blocking=true)
Enqueue a map operation of the allocated buffer.
Definition: CLTensor.cpp:66
arm_compute::CLTensor::associate_memory_group
void associate_memory_group(IMemoryGroup *memory_group) override
Associates a memory managable object with the memory group that manages it.
Definition: CLTensor.cpp:86
arm_compute::CLTensor::CLTensor
CLTensor(IRuntimeContext *ctx=nullptr)
Constructor.
Definition: CLTensor.cpp:31
arm_compute::IMemoryGroup
Memory group interface.
Definition: IMemoryGroup.h:37
arm_compute::CLTensorAllocator::cl_data
const cl::Buffer & cl_data() const
Interface to be implemented by the child class to return the pointer to the CL data.
Definition: CLTensorAllocator.cpp:126
arm_compute::CLTensor::context
CLRuntimeContext * context()
Definition: CLTensor.cpp:36
arm_compute::ICLTensor::buffer
uint8_t * buffer() const override
Interface to be implemented by the child class to return a pointer to CPU memory.
Definition: ICLTensor.cpp:52
arm_compute::ITensorAllocator::info
TensorInfo & info()
Return a reference to the tensor's metadata.
Definition: ITensorAllocator.cpp:46
arm_compute::CLQuantization
OpenCL quantization data.
Definition: CLTypes.h:63
arm_compute::ICLTensor::unmap
void unmap(cl::CommandQueue &q)
Enqueue an unmap operation of the allocated and mapped buffer on the given queue.
Definition: ICLTensor.cpp:39
CLScheduler.h
Interface to enqueue OpenCL kernels and get/set the OpenCL CommandQueue and ICLTuner.
arm_compute::CLTensor::cl_buffer
const cl::Buffer & cl_buffer() const override
Interface to be implemented by the child class to return a reference to the OpenCL buffer containing ...
Definition: CLTensor.cpp:51
arm_compute::CLTensorAllocator::unmap
void unmap(cl::CommandQueue &q, uint8_t *mapping)
Enqueue an unmap operation of the allocated buffer on the given queue.
Definition: CLTensorAllocator.cpp:234
arm_compute::CLTensor::allocator
CLTensorAllocator * allocator()
Return a pointer to the tensor's allocator.
Definition: CLTensor.cpp:61
arm_compute::CLScheduler::get
static CLScheduler & get()
Access the scheduler singleton.
Definition: CLScheduler.cpp:112
arm_compute::IRuntimeContext
Context interface.
Definition: IRuntimeContext.h:34
arm_compute::TensorInfo
Store the tensor's metadata.
Definition: TensorInfo.h:41
arm_compute::CLTensorAllocator
Basic implementation of a CL memory tensor allocator.
Definition: CLTensorAllocator.h:42
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
CLTensor.h
arm_compute::CLTensor::info
TensorInfo * info() const override
Interface to be implemented by the child class to return the tensor's metadata.
Definition: CLTensor.cpp:41
arm_compute::CLScheduler::queue
cl::CommandQueue & queue()
Accessor for the associated CL command queue.
Definition: CLScheduler.cpp:40
arm_compute::CLTensorAllocator::map
uint8_t * map(cl::CommandQueue &q, bool blocking)
Enqueue a map operation of the allocated buffer on the given queue.
Definition: CLTensorAllocator.cpp:224
arm_compute::CLRuntimeContext
Runtime context.
Definition: CLRuntimeContext.h:38