blob: 01c6d8df3d195f305a64431c75b77015d39ccfbf [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Alex Gildayc357c472018-03-21 13:54:09 +00002 * Copyright (c) 2016-2018 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_CLARRAY_H__
25#define __ARM_COMPUTE_CLARRAY_H__
26
27#include "arm_compute/core/CL/ICLArray.h"
28#include "arm_compute/core/CL/OpenCL.h"
29#include "arm_compute/core/Error.h"
30#include "arm_compute/core/Types.h"
31#include "arm_compute/runtime/CL/CLScheduler.h"
32
33namespace arm_compute
34{
35/** CLArray implementation */
36template <class T>
37class CLArray : public ICLArray<T>
38{
39public:
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010040 /** Default constructor: empty array */
41 CLArray()
42 : ICLArray<T>(0), _buffer()
43 {
44 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045 /** Prevent instances of this class from being copied (As this class contains pointers) */
46 CLArray(const CLArray &) = delete;
47 /** Prevent instances of this class from being copied (As this class contains pointers) */
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010048 CLArray &operator=(const CLArray &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000049 /** Allow instances of this class to be move constructed */
50 CLArray(CLArray &&) = default;
51 /** Allow instances of this class to be moved */
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010052 CLArray &operator=(CLArray &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 /** Constructor: initializes an array which can contain up to max_num_points values
54 *
55 * @param[in] max_num_values Maximum number of values the array will be able to stored
56 */
57 CLArray(size_t max_num_values)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010058 : ICLArray<T>(max_num_values), _buffer(CLScheduler::get().context(), CL_MEM_ALLOC_HOST_PTR | CL_MEM_READ_WRITE, max_num_values * sizeof(T))
Anthony Barbier6ff3b192017-09-04 18:44:23 +010059 {
60 }
61 /** Enqueue a map operation of the allocated buffer.
62 *
63 * @param[in] blocking If true, then the mapping will be ready to use by the time
64 * this method returns, else it is the caller's responsibility
65 * to flush the queue and wait for the mapping operation to have completed.
66 */
67 void map(bool blocking = true)
68 {
69 ICLArray<T>::map(CLScheduler::get().queue(), blocking);
70 }
71 using ICLArray<T>::map;
72 /** Enqueue an unmap operation of the allocated and mapped buffer.
73 *
74 * @note This method simply enqueues the unmap operation, it is the caller's responsibility to flush the queue and make sure the unmap is finished before
75 * the memory is accessed by the device.
76 */
77 void unmap()
78 {
79 ICLArray<T>::unmap(CLScheduler::get().queue());
80 }
81 using ICLArray<T>::unmap;
82
83 // Inherited methods overridden:
84 const cl::Buffer &cl_buffer() const override
85 {
86 return _buffer;
87 }
88
89protected:
90 // Inherited methods overridden:
91 uint8_t *do_map(cl::CommandQueue &q, bool blocking) override
92 {
93 ARM_COMPUTE_ERROR_ON(nullptr == _buffer.get());
94 return static_cast<uint8_t *>(q.enqueueMapBuffer(_buffer, blocking ? CL_TRUE : CL_FALSE, CL_MAP_READ | CL_MAP_WRITE, 0, this->max_num_values() * sizeof(T)));
95 }
96 void do_unmap(cl::CommandQueue &q, uint8_t *mapping) override
97 {
98 ARM_COMPUTE_ERROR_ON(nullptr == _buffer.get());
99 q.enqueueUnmapMemObject(_buffer, mapping);
100 }
101
102private:
103 cl::Buffer _buffer;
104};
105
Alex Gildayc357c472018-03-21 13:54:09 +0000106/** OpenCL Array of Key Points. */
107using CLKeyPointArray = CLArray<KeyPoint>;
108/** OpenCL Array of 2D Coordinates. */
109using CLCoordinates2DArray = CLArray<Coordinates2D>;
110/** OpenCL Array of Detection Windows. */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111using CLDetectionWindowArray = CLArray<DetectionWindow>;
Alex Gildayc357c472018-03-21 13:54:09 +0000112/** OpenCL Array of ROIs. */
113using CLROIArray = CLArray<ROI>;
114/** OpenCL Array of 2D Sizes. */
115using CLSize2DArray = CLArray<Size2D>;
116/** OpenCL Array of uint8s. */
117using CLUInt8Array = CLArray<cl_uchar>;
118/** OpenCL Array of uint16s. */
119using CLUInt16Array = CLArray<cl_ushort>;
120/** OpenCL Array of uint32s. */
121using CLUInt32Array = CLArray<cl_uint>;
122/** OpenCL Array of int16s. */
123using CLInt16Array = CLArray<cl_short>;
124/** OpenCL Array of int32s. */
125using CLInt32Array = CLArray<cl_int>;
126/** OpenCL Array of floats. */
127using CLFloatArray = CLArray<cl_float>;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128}
129#endif /* __ARM_COMPUTE_CLARRAY_H__ */