blob: 982cc512742514d5543fc8d8273e673043533869 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas4d0351c2019-04-03 15:11:16 +01002 * Copyright (c) 2016-2019 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#ifndef __ARM_COMPUTE_CLTENSORALLOCATOR_H__
25#define __ARM_COMPUTE_CLTENSORALLOCATOR_H__
26
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010027#include "arm_compute/runtime/CL/CLArray.h"
Georgios Pinitas99d40952018-04-23 16:26:46 +010028#include "arm_compute/runtime/CL/CLMemory.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/runtime/ITensorAllocator.h"
30
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010031#include "arm_compute/core/CL/CLTypes.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010032#include "arm_compute/core/CL/OpenCL.h"
Georgios Pinitas99d40952018-04-23 16:26:46 +010033
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034#include <cstdint>
35
36namespace arm_compute
37{
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010038class CLTensor;
39template <typename>
40class MemoryGroupBase;
Alex Gildayc357c472018-03-21 13:54:09 +000041/** Memory Group in OpenCL */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010042using CLMemoryGroup = MemoryGroupBase<CLTensor>;
43
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044/** Basic implementation of a CL memory tensor allocator. */
45class CLTensorAllocator : public ITensorAllocator
46{
47public:
Alex Gildayc357c472018-03-21 13:54:09 +000048 /** Default constructor.
49 *
50 * @param[in] owner (Optional) Owner of the allocator.
51 */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010052 CLTensorAllocator(CLTensor *owner = nullptr);
Alex Gildayc357c472018-03-21 13:54:09 +000053 /** Prevent instances of this class from being copied (As this class contains pointers) */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010054 CLTensorAllocator(const CLTensorAllocator &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000055 /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010056 CLTensorAllocator &operator=(const CLTensorAllocator &) = delete;
57 /** Allow instances of this class to be moved */
58 CLTensorAllocator(CLTensorAllocator &&) = default;
59 /** Allow instances of this class to be moved */
60 CLTensorAllocator &operator=(CLTensorAllocator &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010061
Alex Gildayc357c472018-03-21 13:54:09 +000062 /** Interface to be implemented by the child class to return the pointer to the mapped data.
63 *
64 * @return pointer to the mapped data.
65 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 uint8_t *data();
Alex Gildayc357c472018-03-21 13:54:09 +000067 /** Interface to be implemented by the child class to return the pointer to the CL data.
68 *
69 * @return pointer to the CL data.
70 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 const cl::Buffer &cl_data() const;
Georgios Pinitas4c5469b2019-05-21 13:32:43 +010072 /** Wrapped quantization info data accessor
73 *
74 * @return A wrapped quantization info object.
75 */
76 CLQuantization quantization() const;
Pablo Telloe86a09f2018-01-11 15:44:48 +000077
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078 /** Enqueue a map operation of the allocated buffer on the given queue.
79 *
80 * @param[in,out] q The CL command queue to use for the mapping operation.
81 * @param[in] blocking If true, then the mapping will be ready to use by the time
82 * this method returns, else it is the caller's responsibility
83 * to flush the queue and wait for the mapping operation to have completed before using the returned mapping pointer.
84 *
85 * @return The mapping address.
86 */
87 uint8_t *map(cl::CommandQueue &q, bool blocking);
88 /** Enqueue an unmap operation of the allocated buffer on the given queue.
89 *
90 * @note This method simply enqueue the unmap operation, it is the caller's responsibility to flush the queue and make sure the unmap is finished before
91 * the memory is accessed by the device.
92 *
93 * @param[in,out] q The CL command queue to use for the mapping operation.
94 * @param[in] mapping The cpu mapping to unmap.
95 */
96 void unmap(cl::CommandQueue &q, uint8_t *mapping);
97
98 /** Allocate size specified by TensorInfo of OpenCL memory.
99 *
100 * @note: The tensor must not already be allocated when calling this function.
101 *
102 */
103 void allocate() override;
104
105 /** Free allocated OpenCL memory.
106 *
107 * @note The tensor must have been allocated when calling this function.
108 *
109 */
110 void free() override;
Georgios Pinitas99d40952018-04-23 16:26:46 +0100111 /** Import an existing memory as a tensor's backing memory
112 *
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100113 * @warning memory should have been created under the same context that ACL uses.
114 * @warning memory is expected to be aligned with the device requirements.
115 * @warning tensor shouldn't be memory managed.
116 * @warning ownership of memory is not transferred.
Manuel Bottini342d1bc2019-07-24 14:51:51 +0100117 * @warning memory must be writable in case of in-place operations
Georgios Pinitasdb09b372019-06-17 17:46:17 +0100118 * @warning padding should be accounted by the client code.
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100119 * @note buffer size will be checked to be compliant with total_size reported by ITensorInfo.
Georgios Pinitas99d40952018-04-23 16:26:46 +0100120 *
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100121 * @param[in] buffer Buffer to be used as backing memory
Georgios Pinitas99d40952018-04-23 16:26:46 +0100122 *
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100123 * @return An error status
Georgios Pinitas99d40952018-04-23 16:26:46 +0100124 */
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100125 Status import_memory(cl::Buffer buffer);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100126 /** Associates the tensor with a memory group
127 *
128 * @param[in] associated_memory_group Memory group to associate the tensor with
129 */
130 void set_associated_memory_group(CLMemoryGroup *associated_memory_group);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131
132protected:
133 /** Call map() on the OpenCL buffer.
134 *
135 * @return A pointer to the beginning of the tensor's allocation.
136 */
137 uint8_t *lock() override;
138 /** Call unmap() on the OpenCL buffer. */
139 void unlock() override;
140
141private:
Georgios Pinitasdf310362018-11-14 13:16:56 +0000142 static const cl::Buffer _empty_buffer;
143
144private:
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100145 CLMemoryGroup *_associated_memory_group; /**< Registered memory manager */
Georgios Pinitas99d40952018-04-23 16:26:46 +0100146 CLMemory _memory; /**< OpenCL memory */
Georgios Pinitasdf310362018-11-14 13:16:56 +0000147 uint8_t *_mapping; /**< Pointer to the CPU mapping of the OpenCL buffer. */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100148 CLTensor *_owner; /**< Owner of the allocator */
Georgios Pinitas4c5469b2019-05-21 13:32:43 +0100149 CLFloatArray _scale;
150 CLInt32Array _offset;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100151};
Georgios Pinitas99d40952018-04-23 16:26:46 +0100152} // namespace arm_compute
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100153#endif /* __ARM_COMPUTE_CLTENSORALLOCATOR_H__ */