blob: edd9de8097188543203054311b38e43e7d335f6d [file] [log] [blame]
Georgios Pinitas99d40952018-04-23 16:26:46 +01001/*
2 * Copyright (c) 2018 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_RUNTIME_CL_CLMEMORY_H__
25#define __ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H__
26
27#include "arm_compute/core/CL/OpenCL.h"
28#include "arm_compute/runtime/CL/CLMemoryRegion.h"
29
30#include <cstddef>
31#include <memory>
32
33namespace arm_compute
34{
35/** OpenCL implementation of memory object */
36class CLMemory
37{
38public:
39 /** Default Constructor */
40 CLMemory();
41 /** Default Constructor
42 *
43 * @param[in] memory Memory to be imported
44 */
45 CLMemory(std::shared_ptr<ICLMemoryRegion> memory);
46 /** Default Constructor
47 *
48 * @note Ownership of the memory is not transferred to this object.
49 * Thus management (allocate/free) should be done by the client.
50 *
51 * @param[in] memory Memory to be imported
52 */
53 CLMemory(ICLMemoryRegion *memory);
54 /** Allow instances of this class to be copied */
55 CLMemory(const CLMemory &) = default;
56 /** Allow instances of this class to be copy assigned */
57 CLMemory &operator=(const CLMemory &) = default;
58 /** Allow instances of this class to be moved */
59 CLMemory(CLMemory &&) noexcept = default;
60 /** Allow instances of this class to be move assigned */
61 CLMemory &operator=(CLMemory &&) noexcept = default;
62 /** Region accessor
63 *
64 * @return Memory region
65 */
66 ICLMemoryRegion *region();
67 /** Region accessor
68 *
69 * @return Memory region
70 */
71 ICLMemoryRegion *region() const;
72
73private:
74 /** Creates empty region */
75 void create_empty_region();
76
77private:
78 ICLMemoryRegion *_region;
79 std::shared_ptr<ICLMemoryRegion> _region_owned;
80};
81} // namespace arm_compute
82#endif /* __ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H__ */