blob: e285f227de0fb000c3d72f84e87b6078078658b8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgio4a65b982018-03-02 11:21:38 +00002 * 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 */
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 */
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010042 Accessor(Tensor &tensor);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010043
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010044 Accessor(const Accessor &) = delete;
45 Accessor &operator=(const Accessor &) = delete;
46 Accessor(Accessor &&) = default;
47 Accessor &operator=(Accessor &&) = default;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010048
Chunosovd621bca2017-11-03 17:33:15 +070049 TensorShape shape() const override;
50 size_t element_size() const override;
51 size_t size() const override;
52 Format format() const override;
Michele Di Giorgio4a65b982018-03-02 11:21:38 +000053 DataLayout data_layout() const override;
Chunosovd621bca2017-11-03 17:33:15 +070054 DataType data_type() const override;
55 int num_channels() const override;
56 int num_elements() const override;
57 PaddingSize padding() const override;
58 int fixed_point_position() const override;
59 QuantizationInfo quantization_info() const override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060 const void *operator()(const Coordinates &coord) const override;
61 void *operator()(const Coordinates &coord) override;
SiCong Li86b53332017-08-23 11:02:43 +010062 const void *data() const;
63 void *data();
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064
65private:
66 Tensor &_tensor;
67};
68
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010069inline Accessor::Accessor(Tensor &tensor)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010070 : _tensor{ tensor }
71{
72}
73
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010074inline TensorShape Accessor::shape() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075{
76 return _tensor.info()->tensor_shape();
77}
78
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010079inline size_t Accessor::element_size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010080{
81 return _tensor.info()->element_size();
82}
83
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010084inline size_t Accessor::size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085{
86 return _tensor.info()->total_size();
87}
88
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010089inline Format Accessor::format() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010090{
91 return _tensor.info()->format();
92}
93
Michele Di Giorgio4a65b982018-03-02 11:21:38 +000094inline DataLayout Accessor::data_layout() const
95{
96 return _tensor.info()->data_layout();
97}
98
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010099inline DataType Accessor::data_type() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100100{
101 return _tensor.info()->data_type();
102}
103
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100104inline int Accessor::num_channels() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100105{
106 return _tensor.info()->num_channels();
107}
108
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100109inline int Accessor::num_elements() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100110{
111 return _tensor.info()->tensor_shape().total_size();
112}
113
Giorgio Arenaa2611812017-07-21 10:08:48 +0100114inline PaddingSize Accessor::padding() const
115{
116 return _tensor.info()->padding();
117}
118
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100119inline int Accessor::fixed_point_position() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100120{
121 return _tensor.info()->fixed_point_position();
122}
123
Chunosovd621bca2017-11-03 17:33:15 +0700124inline QuantizationInfo Accessor::quantization_info() const
125{
126 return _tensor.info()->quantization_info();
127}
128
SiCong Li86b53332017-08-23 11:02:43 +0100129inline const void *Accessor::data() const
130{
131 return _tensor.buffer();
132}
133
134inline void *Accessor::data()
135{
136 return _tensor.buffer();
137}
138
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100139inline const void *Accessor::operator()(const Coordinates &coord) const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140{
141 return _tensor.ptr_to_element(coord);
142}
143
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100144inline void *Accessor::operator()(const Coordinates &coord)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145{
146 return _tensor.ptr_to_element(coord);
147}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100148} // namespace test
149} // namespace arm_compute
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100150#endif /* __ARM_COMPUTE_TEST_ACCESSOR_H__ */