Compute Library
 23.11
CLMemory.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2019 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 
30 
31 #include <cstddef>
32 #include <memory>
33 
34 namespace arm_compute
35 {
36 /** OpenCL implementation of memory object */
37 class CLMemory : public IMemory
38 {
39 public:
40  /** Default Constructor */
41  CLMemory();
42  /** Default Constructor
43  *
44  * @param[in] memory Memory to be imported
45  */
46  CLMemory(const std::shared_ptr<ICLMemoryRegion> &memory);
47  /** Default Constructor
48  *
49  * @note Ownership of the memory is not transferred to this object.
50  * Thus management (allocate/free) should be done by the client.
51  *
52  * @param[in] memory Memory to be imported
53  */
54  CLMemory(ICLMemoryRegion *memory);
55  /** Allow instances of this class to be copied */
56  CLMemory(const CLMemory &) = default;
57  /** Allow instances of this class to be copy assigned */
58  CLMemory &operator=(const CLMemory &) = default;
59  /** Allow instances of this class to be moved */
60  CLMemory(CLMemory &&) noexcept = default;
61  /** Allow instances of this class to be move assigned */
62  CLMemory &operator=(CLMemory &&) noexcept = default;
63  /** OpenCL Region accessor
64  *
65  * @return Memory region
66  */
68  /** OpenCL Region accessor
69  *
70  * @return Memory region
71  */
72  ICLMemoryRegion *cl_region() const;
73 
74  // Inherited methods overridden:
75  IMemoryRegion *region() final;
76  IMemoryRegion *region() const final;
77  void set_region(IMemoryRegion *region) final;
78  void set_owned_region(std::unique_ptr<IMemoryRegion> region) final;
79 
80 private:
81  ICLMemoryRegion *_region;
82  std::shared_ptr<ICLMemoryRegion> _region_owned;
83 };
84 } // namespace arm_compute
85 #endif /* ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H */
arm_compute::CLMemory::cl_region
ICLMemoryRegion * cl_region()
OpenCL Region accessor.
Definition: CLMemory.cpp:47
IMemory.h
arm_compute::IMemoryRegion
Memory region interface.
Definition: IMemoryRegion.h:33
arm_compute::CLMemory::set_region
void set_region(IMemoryRegion *region) final
Sets a memory region.
Definition: CLMemory.cpp:67
arm_compute::CLMemory::set_owned_region
void set_owned_region(std::unique_ptr< IMemoryRegion > region) final
Sets a memory region.
Definition: CLMemory.cpp:74
arm_compute::CLMemory::CLMemory
CLMemory()
Default Constructor.
Definition: CLMemory.cpp:32
arm_compute::CLMemory::region
IMemoryRegion * region() final
Region accessor.
Definition: CLMemory.cpp:57
CLMemoryRegion.h
arm_compute::CLMemory::operator=
CLMemory & operator=(const CLMemory &)=default
Allow instances of this class to be copy assigned.
arm_compute::ICLMemoryRegion
OpenCL memory region interface.
Definition: CLMemoryRegion.h:35
OpenCL.h
Wrapper to configure the Khronos OpenCL C++ header.
arm_compute::CLMemory
OpenCL implementation of memory object.
Definition: CLMemory.h:37
arm_compute::IMemory
Memory interface.
Definition: IMemory.h:32
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24