blob: dda26e2e89ec3513f66f479698f24813a3f0ee58 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 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_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;
49 CLArray(CLArray &&) = default;
50 CLArray &operator=(CLArray &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051 /** Constructor: initializes an array which can contain up to max_num_points values
52 *
53 * @param[in] max_num_values Maximum number of values the array will be able to stored
54 */
55 CLArray(size_t max_num_values)
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +010056 : 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 +010057 {
58 }
59 /** Enqueue a map operation of the allocated buffer.
60 *
61 * @param[in] blocking If true, then the mapping will be ready to use by the time
62 * this method returns, else it is the caller's responsibility
63 * to flush the queue and wait for the mapping operation to have completed.
64 */
65 void map(bool blocking = true)
66 {
67 ICLArray<T>::map(CLScheduler::get().queue(), blocking);
68 }
69 using ICLArray<T>::map;
70 /** Enqueue an unmap operation of the allocated and mapped buffer.
71 *
72 * @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
73 * the memory is accessed by the device.
74 */
75 void unmap()
76 {
77 ICLArray<T>::unmap(CLScheduler::get().queue());
78 }
79 using ICLArray<T>::unmap;
80
81 // Inherited methods overridden:
82 const cl::Buffer &cl_buffer() const override
83 {
84 return _buffer;
85 }
86
87protected:
88 // Inherited methods overridden:
89 uint8_t *do_map(cl::CommandQueue &q, bool blocking) override
90 {
91 ARM_COMPUTE_ERROR_ON(nullptr == _buffer.get());
92 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)));
93 }
94 void do_unmap(cl::CommandQueue &q, uint8_t *mapping) override
95 {
96 ARM_COMPUTE_ERROR_ON(nullptr == _buffer.get());
97 q.enqueueUnmapMemObject(_buffer, mapping);
98 }
99
100private:
101 cl::Buffer _buffer;
102};
103
104using CLKeyPointArray = CLArray<KeyPoint>;
105using CLCoordinates2DArray = CLArray<Coordinates2D>;
106using CLDetectionWindowArray = CLArray<DetectionWindow>;
SiCong Li3e363692017-07-04 15:02:10 +0100107using CLROIArray = CLArray<ROI>;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100108using CLSize2DArray = CLArray<Size2D>;
109using CLUInt8Array = CLArray<cl_uchar>;
110using CLUInt16Array = CLArray<cl_ushort>;
111using CLUInt32Array = CLArray<cl_uint>;
112using CLInt16Array = CLArray<cl_short>;
113using CLInt32Array = CLArray<cl_int>;
114using CLFloatArray = CLArray<cl_float>;
115}
116#endif /* __ARM_COMPUTE_CLARRAY_H__ */