blob: bc2747d2a12e6eee07f478a9b8d5c83a6fc33d0e [file] [log] [blame]
Moritz Pflanzera09de0c2017-09-01 20:41:12 +01001/*
2 * Copyright (c) 2017 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#include "RawTensor.h"
25
26namespace arm_compute
27{
28namespace test
29{
30RawTensor::RawTensor(TensorShape shape, Format format, int fixed_point_position)
31 : SimpleTensor(shape, format, fixed_point_position)
32{
33 _buffer = support::cpp14::make_unique<uint8_t[]>(SimpleTensor::num_elements() * SimpleTensor::num_channels() * SimpleTensor::element_size());
34}
35
36RawTensor::RawTensor(TensorShape shape, DataType data_type, int num_channels, int fixed_point_position)
37 : SimpleTensor(shape, data_type, num_channels, fixed_point_position)
38{
39 _buffer = support::cpp14::make_unique<uint8_t[]>(SimpleTensor::num_elements() * SimpleTensor::num_channels() * SimpleTensor::element_size());
40}
41
42RawTensor::RawTensor(const RawTensor &tensor)
43 : SimpleTensor(tensor.shape(), tensor.data_type(), tensor.num_channels(), tensor.fixed_point_position())
44{
45 _format = tensor.format();
46 _buffer = support::cpp14::make_unique<uint8_t[]>(num_elements() * num_channels() * element_size());
47 std::copy_n(tensor.data(), num_elements() * num_channels() * element_size(), _buffer.get());
48}
49
50RawTensor &RawTensor::operator=(RawTensor tensor)
51{
52 swap(*this, tensor);
53
54 return *this;
55}
56
57const void *RawTensor::operator()(const Coordinates &coord) const
58{
59 return _buffer.get() + coord2index(_shape, coord) * element_size();
60}
61
62void *RawTensor::operator()(const Coordinates &coord)
63{
64 return _buffer.get() + coord2index(_shape, coord) * element_size();
65}
66} // namespace test
67} // namespace arm_compute