blob: 5842ddf512ef569606883afc534296aec99cecb3 [file] [log] [blame]
Georgios Pinitas99d40952018-04-23 16:26:46 +01001/*
Michalis Spyroubcfd09a2019-05-01 13:03:59 +01002 * Copyright (c) 2018-2019 ARM Limited.
Georgios Pinitas99d40952018-04-23 16:26:46 +01003 *
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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H
25#define ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H
Georgios Pinitas99d40952018-04-23 16:26:46 +010026
Georgios Pinitasdf310362018-11-14 13:16:56 +000027#include "arm_compute/runtime/IMemory.h"
28
Georgios Pinitas99d40952018-04-23 16:26:46 +010029#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/runtime/CL/CLMemoryRegion.h"
31
32#include <cstddef>
33#include <memory>
34
35namespace arm_compute
36{
37/** OpenCL implementation of memory object */
Georgios Pinitasdf310362018-11-14 13:16:56 +000038class CLMemory : public IMemory
Georgios Pinitas99d40952018-04-23 16:26:46 +010039{
40public:
41 /** Default Constructor */
42 CLMemory();
43 /** Default Constructor
44 *
45 * @param[in] memory Memory to be imported
46 */
Michalis Spyroubcfd09a2019-05-01 13:03:59 +010047 CLMemory(const std::shared_ptr<ICLMemoryRegion> &memory);
Georgios Pinitas99d40952018-04-23 16:26:46 +010048 /** Default Constructor
49 *
50 * @note Ownership of the memory is not transferred to this object.
51 * Thus management (allocate/free) should be done by the client.
52 *
53 * @param[in] memory Memory to be imported
54 */
55 CLMemory(ICLMemoryRegion *memory);
56 /** Allow instances of this class to be copied */
57 CLMemory(const CLMemory &) = default;
58 /** Allow instances of this class to be copy assigned */
59 CLMemory &operator=(const CLMemory &) = default;
60 /** Allow instances of this class to be moved */
61 CLMemory(CLMemory &&) noexcept = default;
62 /** Allow instances of this class to be move assigned */
63 CLMemory &operator=(CLMemory &&) noexcept = default;
Georgios Pinitasdf310362018-11-14 13:16:56 +000064 /** OpenCL Region accessor
Georgios Pinitas99d40952018-04-23 16:26:46 +010065 *
66 * @return Memory region
67 */
Georgios Pinitasdf310362018-11-14 13:16:56 +000068 ICLMemoryRegion *cl_region();
69 /** OpenCL Region accessor
Georgios Pinitas99d40952018-04-23 16:26:46 +010070 *
71 * @return Memory region
72 */
Georgios Pinitasdf310362018-11-14 13:16:56 +000073 ICLMemoryRegion *cl_region() const;
Georgios Pinitas99d40952018-04-23 16:26:46 +010074
Georgios Pinitasdf310362018-11-14 13:16:56 +000075 // Inherited methods overridden:
76 IMemoryRegion *region() final;
77 IMemoryRegion *region() const final;
78 void set_region(IMemoryRegion *region) final;
79 void set_owned_region(std::unique_ptr<IMemoryRegion> region) final;
Georgios Pinitas99d40952018-04-23 16:26:46 +010080
81private:
82 ICLMemoryRegion *_region;
83 std::shared_ptr<ICLMemoryRegion> _region_owned;
84};
85} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +000086#endif /* ARM_COMPUTE_RUNTIME_CL_CLMEMORY_H */