blob: 4648ffb51f6cb3c917abb316fee9fc120d37ee1b [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_CLLUTALLOCATOR_H__
25#define __ARM_COMPUTE_CLLUTALLOCATOR_H__
26
27#include "arm_compute/runtime/ILutAllocator.h"
28
29#include "arm_compute/core/CL/OpenCL.h"
30
31#include <cstdint>
32
33namespace arm_compute
34{
35/** Basic implementation of a CL memory LUT allocator. */
36class CLLutAllocator : public ILutAllocator
37{
38public:
39 /** Default constructor. */
40 CLLutAllocator();
41 /** Default destructor. */
42 ~CLLutAllocator() = default;
43 /** Prevent instances of this class from being copied (As this class contains pointers). */
44 CLLutAllocator(const CLLutAllocator &) = delete;
45 /** Prevent instances of this class from being copy assigned (As this class contains pointers). */
46 const CLLutAllocator &operator=(const CLLutAllocator &) = delete;
47 /** Interface to be implemented by the child class to return the pointer to the mapped data. */
48 uint8_t *data();
49 /** Interface to be implemented by the child class to return the pointer to the CL data. */
50 const cl::Buffer &cl_data() const;
51 /** Enqueue a map operation of the allocated buffer on the given queue.
52 *
53 * @param[in,out] q The CL command queue to use for the mapping operation.
54 * @param[in] blocking If true, then the mapping will be ready to use by the time
55 * this method returns, else it is the caller's responsibility
56 * to flush the queue and wait for the mapping operation to have completed before using the returned mapping pointer.
57 *
58 * @return The mapping address.
59 */
60 uint8_t *map(cl::CommandQueue &q, bool blocking);
61 /** Enqueue an unmap operation of the allocated buffer on the given queue.
62 *
63 * @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
64 * the memory is accessed by the device.
65 *
66 * @param[in,out] q The CL command queue to use for the mapping operation.
67 * @param[in] mapping The cpu mapping to unmap.
68 */
69 void unmap(cl::CommandQueue &q, uint8_t *mapping);
70
71protected:
72 /** Allocate num_elements() * sizeof(type()) of OpenCL memory. */
73 void allocate() override;
74 /** Call map() on the OpenCL buffer.
75 *
76 * @return A pointer to the beginning of the LUT's allocation.
77 */
78 uint8_t *lock() override;
79 /** Call unmap() on the OpenCL buffer. */
80 void unlock() override;
81
82private:
83 cl::Buffer _buffer; /**< OpenCL buffer containing the LUT data. */
84 uint8_t *_mapping; /**< Pointer to the CPU mapping of the OpenCL buffer. */
85};
86}
87
88#endif /* __ARM_COMPUTE_CLLUTALLOCATOR_H__ */