blob: e3a926cffe83fc107d3cf9f4ef303d8b5dd38ef5 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
John Kesapidesfb68ca12019-01-21 14:13:27 +00002 * Copyright (c) 2017-2019 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 */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010024#ifndef __ARM_COMPUTE_TEST_ACCESSOR_H__
25#define __ARM_COMPUTE_TEST_ACCESSOR_H__
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/runtime/Tensor.h"
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010028#include "tests/IAccessor.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029
30namespace arm_compute
31{
32namespace test
33{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034/** Accessor implementation for @ref Tensor objects. */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010035class Accessor : public IAccessor
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036{
37public:
38 /** Create an accessor for the given @p tensor.
39 *
40 * @param[in, out] tensor To be accessed tensor.
41 */
John Kesapidesfb68ca12019-01-21 14:13:27 +000042 Accessor(ITensor &tensor);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043
Alex Gildayc357c472018-03-21 13:54:09 +000044 /** Prevent instances of this class from being copy constructed */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010045 Accessor(const Accessor &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000046 /** Prevent instances of this class from being copied */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010047 Accessor &operator=(const Accessor &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000048 /** Allow instances of this class to be move constructed */
49 Accessor(Accessor &&) = default;
50 /** Allow instances of this class to be moved */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010051 Accessor &operator=(Accessor &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010052
Alex Gildayc357c472018-03-21 13:54:09 +000053 /** Get the tensor data.
54 *
55 * @return a constant pointer to the tensor data.
56 */
57 const void *data() const;
58 /** Get the tensor data.
59 *
60 * @return a pointer to the tensor data.
61 */
62 void *data();
63
Chunosovd621bca2017-11-03 17:33:15 +070064 TensorShape shape() const override;
65 size_t element_size() const override;
66 size_t size() const override;
67 Format format() const override;
Michele Di Giorgio4a65b982018-03-02 11:21:38 +000068 DataLayout data_layout() const override;
Chunosovd621bca2017-11-03 17:33:15 +070069 DataType data_type() const override;
70 int num_channels() const override;
71 int num_elements() const override;
72 PaddingSize padding() const override;
Chunosovd621bca2017-11-03 17:33:15 +070073 QuantizationInfo quantization_info() const override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074 const void *operator()(const Coordinates &coord) const override;
75 void *operator()(const Coordinates &coord) override;
76
77private:
John Kesapidesfb68ca12019-01-21 14:13:27 +000078 ITensor &_tensor;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079};
80
John Kesapidesfb68ca12019-01-21 14:13:27 +000081inline Accessor::Accessor(ITensor &tensor)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 : _tensor{ tensor }
83{
84}
85
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010086inline TensorShape Accessor::shape() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087{
88 return _tensor.info()->tensor_shape();
89}
90
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010091inline size_t Accessor::element_size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010092{
93 return _tensor.info()->element_size();
94}
95
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010096inline size_t Accessor::size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010097{
98 return _tensor.info()->total_size();
99}
100
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100101inline Format Accessor::format() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100102{
103 return _tensor.info()->format();
104}
105
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000106inline DataLayout Accessor::data_layout() const
107{
108 return _tensor.info()->data_layout();
109}
110
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100111inline DataType Accessor::data_type() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112{
113 return _tensor.info()->data_type();
114}
115
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100116inline int Accessor::num_channels() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117{
118 return _tensor.info()->num_channels();
119}
120
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100121inline int Accessor::num_elements() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100122{
123 return _tensor.info()->tensor_shape().total_size();
124}
125
Giorgio Arenaa2611812017-07-21 10:08:48 +0100126inline PaddingSize Accessor::padding() const
127{
128 return _tensor.info()->padding();
129}
130
Chunosovd621bca2017-11-03 17:33:15 +0700131inline QuantizationInfo Accessor::quantization_info() const
132{
133 return _tensor.info()->quantization_info();
134}
135
SiCong Li86b53332017-08-23 11:02:43 +0100136inline const void *Accessor::data() const
137{
138 return _tensor.buffer();
139}
140
141inline void *Accessor::data()
142{
143 return _tensor.buffer();
144}
145
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100146inline const void *Accessor::operator()(const Coordinates &coord) const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147{
148 return _tensor.ptr_to_element(coord);
149}
150
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100151inline void *Accessor::operator()(const Coordinates &coord)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100152{
153 return _tensor.ptr_to_element(coord);
154}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100155} // namespace test
156} // namespace arm_compute
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100157#endif /* __ARM_COMPUTE_TEST_ACCESSOR_H__ */