blob: c47d2be1b0cd10ce2f81912ff03463d19091a0bc [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Alex Gildayc357c472018-03-21 13:54:09 +00002 * Copyright (c) 2016-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
24#ifndef __ARM_COMPUTE_CLTENSOR_H__
25#define __ARM_COMPUTE_CLTENSOR_H__
26
27#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/CL/OpenCL.h"
29#include "arm_compute/runtime/CL/CLTensorAllocator.h"
30
31#include <cstdint>
32
33namespace arm_compute
34{
35class ITensorAllocator;
36class ITensorInfo;
37
38/** Basic implementation of the OpenCL tensor interface */
39class CLTensor : public ICLTensor
40{
41public:
42 /** Constructor */
43 CLTensor();
44 /** Return a pointer to the tensor's allocator
45 *
46 * @return A pointer to the tensor's allocator
47 */
Georgios Pinitas99d40952018-04-23 16:26:46 +010048 CLTensorAllocator *allocator();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 /** Enqueue a map operation of the allocated buffer.
50 *
51 * @param[in] blocking If true, then the mapping will be ready to use by the time
52 * this method returns, else it is the caller's responsibility
53 * to flush the queue and wait for the mapping operation to have completed.
54 */
55 void map(bool blocking = true);
56 using ICLTensor::map;
57 /** Enqueue an unmap operation of the allocated and mapped buffer.
58 *
59 * @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
60 * the memory is accessed by the device.
61 */
62 void unmap();
63 using ICLTensor::unmap;
64
65 // Inherited methods overridden:
66 TensorInfo *info() const override;
67 TensorInfo *info() override;
68 const cl::Buffer &cl_buffer() const override;
69
70protected:
71 // Inherited methods overridden:
72 uint8_t *do_map(cl::CommandQueue &q, bool blocking) override;
73 void do_unmap(cl::CommandQueue &q) override;
74
75private:
76 mutable CLTensorAllocator _allocator; /**< Instance of the OpenCL tensor allocator */
77};
78
Alex Gildayc357c472018-03-21 13:54:09 +000079/** OpenCL Image */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080using CLImage = CLTensor;
81}
82#endif /*__ARM_COMPUTE_CLTENSOR_H__ */