blob: c379018d3983ad43cbc09aa1c07e628befc5cf03 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
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
49 TensorShape shape() const override;
50 size_t element_size() const override;
51 size_t size() const override;
52 Format format() const override;
53 DataType data_type() const override;
54 int num_channels() const override;
55 int num_elements() const override;
Giorgio Arenaa2611812017-07-21 10:08:48 +010056 PaddingSize padding() const override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010057 int fixed_point_position() const override;
58 const void *operator()(const Coordinates &coord) const override;
59 void *operator()(const Coordinates &coord) override;
60
61private:
62 Tensor &_tensor;
63};
64
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010065inline Accessor::Accessor(Tensor &tensor)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 : _tensor{ tensor }
67{
68}
69
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010070inline TensorShape Accessor::shape() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071{
72 return _tensor.info()->tensor_shape();
73}
74
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010075inline size_t Accessor::element_size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076{
77 return _tensor.info()->element_size();
78}
79
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010080inline size_t Accessor::size() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081{
82 return _tensor.info()->total_size();
83}
84
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010085inline Format Accessor::format() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086{
87 return _tensor.info()->format();
88}
89
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010090inline DataType Accessor::data_type() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091{
92 return _tensor.info()->data_type();
93}
94
Moritz Pflanzerd58cec02017-07-18 15:44:21 +010095inline int Accessor::num_channels() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096{
97 return _tensor.info()->num_channels();
98}
99
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100100inline int Accessor::num_elements() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100101{
102 return _tensor.info()->tensor_shape().total_size();
103}
104
Giorgio Arenaa2611812017-07-21 10:08:48 +0100105inline PaddingSize Accessor::padding() const
106{
107 return _tensor.info()->padding();
108}
109
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100110inline int Accessor::fixed_point_position() const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100111{
112 return _tensor.info()->fixed_point_position();
113}
114
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100115inline const void *Accessor::operator()(const Coordinates &coord) const
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100116{
117 return _tensor.ptr_to_element(coord);
118}
119
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100120inline void *Accessor::operator()(const Coordinates &coord)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121{
122 return _tensor.ptr_to_element(coord);
123}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100124} // namespace test
125} // namespace arm_compute
Moritz Pflanzerd58cec02017-07-18 15:44:21 +0100126#endif /* __ARM_COMPUTE_TEST_ACCESSOR_H__ */