blob: dd277384c7bdd274484ca833bb3a9d1fc1b2c583 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitas99d40952018-04-23 16:26:46 +01002 * 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#include "arm_compute/runtime/CL/CLTensor.h"
25
26#include "arm_compute/runtime/CL/CLScheduler.h"
27
28using namespace arm_compute;
29
30CLTensor::CLTensor()
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010031 : _allocator(this)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032{
33}
34
35TensorInfo *CLTensor::info() const
36{
37 return &_allocator.info();
38}
39
40TensorInfo *CLTensor::info()
41{
42 return &_allocator.info();
43}
44
45const cl::Buffer &CLTensor::cl_buffer() const
46{
47 return _allocator.cl_data();
48}
49
Georgios Pinitas99d40952018-04-23 16:26:46 +010050CLTensorAllocator *CLTensor::allocator()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010051{
52 return &_allocator;
53}
54
55void CLTensor::map(bool blocking)
56{
57 ICLTensor::map(CLScheduler::get().queue(), blocking);
58}
59
60void CLTensor::unmap()
61{
62 ICLTensor::unmap(CLScheduler::get().queue());
63}
64
65uint8_t *CLTensor::do_map(cl::CommandQueue &q, bool blocking)
66{
67 return _allocator.map(q, blocking);
68}
69
70void CLTensor::do_unmap(cl::CommandQueue &q)
71{
72 _allocator.unmap(q, buffer());
73}