blob: 1b676ed5a3a1706e0b3627d4c34e69e91cb06fbd [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_ICLARRAY_H__
25#define __ARM_COMPUTE_ICLARRAY_H__
26
27#include "arm_compute/core/CL/OpenCL.h"
28#include "arm_compute/core/IArray.h"
29#include "arm_compute/core/ITensor.h"
30
31namespace arm_compute
32{
33/** Interface for OpenCL Array */
34template <class T>
35class ICLArray : public IArray<T>
36{
37public:
38 /* Constructor */
39 explicit ICLArray(size_t max_num_values)
40 : IArray<T>(max_num_values), _mapping(nullptr)
41 {
42 }
43
44 ICLArray(const ICLArray &) = delete;
45 ICLArray &operator=(const ICLArray &) = delete;
46 virtual ~ICLArray() = default;
47 /** Interface to be implemented by the child class to return a reference to the OpenCL buffer containing the array's data.
48 *
49 * @return A reference to an OpenCL buffer containing the array's data.
50 */
51 virtual const cl::Buffer &cl_buffer() const = 0;
52 /** Enqueue a map operation of the allocated buffer on the given queue.
53 *
54 * @param[in,out] q The CL command queue to use for the mapping operation.
55 * @param[in] blocking If true, then the mapping will be ready to use by the time
56 * this method returns, else it is the caller's responsibility
57 * to flush the queue and wait for the mapping operation to have completed before using the returned mapping pointer.
58 *
59 * @return The mapping address.
60 */
61 void map(cl::CommandQueue &q, bool blocking = true)
62 {
63 _mapping = do_map(q, blocking);
64 }
65 /** Enqueue an unmap operation of the allocated and mapped buffer on the given queue.
66 *
67 * @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
68 * the memory is accessed by the device.
69 *
70 * @param[in,out] q The CL command queue to use for the mapping operation.
71 */
72 void unmap(cl::CommandQueue &q)
73 {
74 do_unmap(q, _mapping);
75 _mapping = nullptr;
76 }
77
78 // Inherited methods overridden:
79 T *buffer() const override
80 {
81 return reinterpret_cast<T *>(_mapping);
82 }
83
84protected:
85 /** Method to be implemented by the child class to map the OpenCL buffer
86 *
87 * @param[in,out] q The CL command queue to use for the mapping operation.
88 * @param[in] blocking If true, then the mapping will be ready to use by the time
89 * this method returns, else it is the caller's responsibility
90 * to flush the queue and wait for the mapping operation to have completed before using the returned mapping pointer.
91 */
92 virtual uint8_t *do_map(cl::CommandQueue &q, bool blocking) = 0;
93 /** Method to be implemented by the child class to unmap the OpenCL buffer
94 *
95 * @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
96 * the memory is accessed by the device.
97 *
98 * @param[in,out] q The CL command queue to use for the mapping operation.
99 * @param[in] mapping Pointer to the buffer to be unmapped.
100 */
101 virtual void do_unmap(cl::CommandQueue &q, uint8_t *mapping) = 0;
102
103private:
104 uint8_t *_mapping;
105};
106
107using ICLKeyPointArray = ICLArray<KeyPoint>;
108using ICLCoordinates2DArray = ICLArray<Coordinates2D>;
109using ICLDetectionWindowArray = ICLArray<DetectionWindow>;
110using ICLSize2DArray = ICLArray<Size2D>;
111using ICLUInt8Array = ICLArray<cl_uchar>;
112using ICLUInt16Array = ICLArray<cl_ushort>;
113using ICLUInt32Array = ICLArray<cl_uint>;
114using ICLInt16Array = ICLArray<cl_short>;
115using ICLInt32Array = ICLArray<cl_int>;
116using ICLFloatArray = ICLArray<cl_float>;
117}
118#endif /*__ARM_COMPUTE_ICLARRAY_H__*/