blob: fd0ab2b9fd4eab5ad3262e5d956a0977658b5a7b [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#ifndef __ARM_COMPUTE_TEST_RAW_TENSOR_H__
25#define __ARM_COMPUTE_TEST_RAW_TENSOR_H__
26
27#include "tests/SimpleTensor.h"
28
29namespace arm_compute
30{
31namespace test
32{
33/** Subclass of SimpleTensor using uint8_t as value type.
34 *
35 * Access operations (except for operator[]) will be based on the data type to
36 * copy the right number of elements.
37 */
38class RawTensor : public SimpleTensor<uint8_t>
39{
40public:
41 /** Create an uninitialised tensor of the given @p shape and @p format.
42 *
43 * @param[in] shape Shape of the new raw tensor.
44 * @param[in] format Format of the new raw tensor.
45 * @param[in] fixed_point_position (Optional) Number of bits for the fractional part of the fixed point numbers
46 */
47 RawTensor(TensorShape shape, Format format, int fixed_point_position = 0);
48
49 /** Create an uninitialised tensor of the given @p shape and @p data type.
50 *
51 * @param[in] shape Shape of the new raw tensor.
52 * @param[in] data_type Data type of the new raw tensor.
53 * @param[in] num_channels (Optional) Number of channels (default = 1).
54 * @param[in] fixed_point_position (Optional) Number of bits for the fractional part of the fixed point numbers (default = 0).
55 */
56 RawTensor(TensorShape shape, DataType data_type, int num_channels = 1, int fixed_point_position = 0);
57
58 /** Create a deep copy of the given @p tensor.
59 *
60 * @param[in] tensor To be copied tensor.
61 */
62 RawTensor(const RawTensor &tensor);
63
64 RawTensor &operator =(RawTensor tensor);
65 RawTensor(RawTensor &&) = default;
66 ~RawTensor() = default;
67
68 /** Read only access to the specified element.
69 *
70 * @param[in] coord Coordinates of the desired element.
71 *
72 * @return A pointer to the desired element.
73 */
74 const void *operator()(const Coordinates &coord) const override;
75
76 /** Access to the specified element.
77 *
78 * @param[in] coord Coordinates of the desired element.
79 *
80 * @return A pointer to the desired element.
81 */
82 void *operator()(const Coordinates &coord) override;
83};
84} // namespace test
85} // namespace arm_compute
86#endif /* __ARM_COMPUTE_TEST_RAW_TENSOR_H__ */