blob: ce2510fe95cff3919241b2764e0939021121738b [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +01002 * Copyright (c) 2017-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 "RawTensor.h"
25
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026namespace arm_compute
27{
28namespace test
29{
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010030RawTensor::RawTensor(TensorShape shape, Format format)
31 : SimpleTensor(shape, format)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010032{
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010033 _buffer = support::cpp14::make_unique<uint8_t[]>(SimpleTensor::num_elements() * SimpleTensor::num_channels() * SimpleTensor::element_size());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034}
35
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010036RawTensor::RawTensor(TensorShape shape, DataType data_type, int num_channels)
37 : SimpleTensor(shape, data_type, num_channels)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038{
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010039 _buffer = support::cpp14::make_unique<uint8_t[]>(SimpleTensor::num_elements() * SimpleTensor::num_channels() * SimpleTensor::element_size());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010040}
41
42RawTensor::RawTensor(const RawTensor &tensor)
Vidhya Sudhan Loganathan014333d2018-07-02 09:13:49 +010043 : SimpleTensor(tensor.shape(), tensor.data_type(), tensor.num_channels())
Anthony Barbier6ff3b192017-09-04 18:44:23 +010044{
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010045 _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());
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048}
49
50RawTensor &RawTensor::operator=(RawTensor tensor)
51{
52 swap(*this, tensor);
53
54 return *this;
55}
56
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010057const void *RawTensor::operator()(const Coordinates &coord) const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058{
59 return _buffer.get() + coord2index(_shape, coord) * element_size();
60}
61
Moritz Pflanzer82e70a12017-08-08 16:20:45 +010062void *RawTensor::operator()(const Coordinates &coord)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010063{
64 return _buffer.get() + coord2index(_shape, coord) * element_size();
65}
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066} // namespace test
67} // namespace arm_compute