blob: c03690756172162e6fb02ddd0ff04e3391aaf53d [file] [log] [blame]
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +00001/*
2 * Copyright (c) 2023 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 */
Gunes Bayir2ae536a2023-07-05 11:39:37 +010024#ifndef COMPUTE_KERNEL_WRITER_SRC_ITILE
25#define COMPUTE_KERNEL_WRITER_SRC_ITILE
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000026
27#include "ckw/TileInfo.h"
28
29#include <string>
30#include <vector>
31
32namespace ckw
33{
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010034/** Compute Kernel Writer tile container. It contains the variables stored in the tile as a string */
35using TileContainer = std::vector<std::vector<std::string>>;
36
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000037/** Tile descriptor which reports the underlying datatype and vector length */
38struct TileVariableDescriptor
39{
Nikolaj Jensenacea4072023-07-03 09:44:42 +010040 DataType dt{ DataType::Unknown }; /** Data type */
41 int32_t len{ 1 }; /** Number of elements in a single variable. For example, 1 for scalar */
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000042};
43
44/** Tile variable */
45struct TileVariable
46{
Nikolaj Jensenacea4072023-07-03 09:44:42 +010047 std::string str{ "" }; /** Tile variable as a string */
48 TileVariableDescriptor desc{}; /** Tile value descriptor which reports the datatype and vector length */
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000049};
50
51/** Tile base class.
52 * A Tile is a collection of variables (either program variables or constants) used to express a 2D data.
53 */
54class ITile
55{
56public:
57 virtual ~ITile() = default;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010058
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000059 /** Method to get all TileVariable objects
60 *
61 * @return a vector containing all @ref TileVariable objects
62 */
63 virtual std::vector<TileVariable> all() const = 0;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010064
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000065 /** Method to get the name of the tile.
66 *
67 * @return the name of the tile
68 */
69 std::string name() const
70 {
71 return _basename;
72 }
Nikolaj Jensenacea4072023-07-03 09:44:42 +010073
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000074 /** Method to get the tile info
75 *
76 * @return the @ref TileInfo
77 */
78 TileInfo info() const
79 {
80 return _info;
81 }
Nikolaj Jensenacea4072023-07-03 09:44:42 +010082
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000083 /** Method to know whether the tile is assignable or not.
84 * For example, a constant tile is not assignable.
85 *
86 * @return true if the tile is assignable
87 */
88 virtual bool is_assignable() const = 0;
89
90protected:
Nikolaj Jensenacea4072023-07-03 09:44:42 +010091 TileInfo _info{ DataType::Unknown }; // Tile info
92 std::string _basename{ "" }; // Tile name
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000093};
94
95/** Tile base class to store scalar variables.
96 */
97class IScalarTile : public ITile
98{
99public:
100 virtual ~IScalarTile() = default;
Nikolaj Jensenacea4072023-07-03 09:44:42 +0100101
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000102 /** Method to get the scalar variable from a tile as a string
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000103 * @param[in] row Tile row. If out-of-bound, the row is clamped to the nearest valid edge
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +0100104 * @param[in] col Tile column. If out-of-bound, the column is clamped to the nearest valid edge
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000105 *
106 * @return the @ref TileVariable
107 */
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +0100108 virtual TileVariable scalar(int32_t row, int32_t col) const = 0;
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000109};
110
111/** Tile base class to store vector variables. It derives from IScalarTile since we can still access the scalar variable
112 */
113class IVectorTile : public IScalarTile
114{
115public:
116 virtual ~IVectorTile() = default;
Nikolaj Jensenacea4072023-07-03 09:44:42 +0100117
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000118 /** Method to get the vector variable from a tile.
119 * The user can query the list of supported vector lengths through the supported_vector_lengths() method.
120 *
121 * @param[in] row Tile row. If out-of-bound, the row is clamped to the nearest valid edge
122 *
123 * @return the vector variable as a @ref TileVariable
124 */
125 virtual TileVariable vector(int32_t row) const = 0;
Nikolaj Jensenacea4072023-07-03 09:44:42 +0100126
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000127 /** Method to get a sub-vector variable. The length of the sub-vector must be supported by the derived IVectorTile class
128 *
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +0100129 * @param[in] row Tile row. If out-of-bound, the row is clamped to the nearest valid edge
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000130 * @param[in] col_start Tile starting column to get the sub-vector. If out-of-bound, the derived IVectorTile class may throw an assert.
131 * @param[in] width The width of the sub-vector. The width must be supported by the derived IVectorTile class and the last element must be in-bound.
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000132 *
133 * @return the vector variable as a @ref TileVariable
134 */
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +0100135 virtual TileVariable vector(int32_t row, int32_t col_start, int32_t width) const = 0;
Nikolaj Jensenacea4072023-07-03 09:44:42 +0100136
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000137 /** Method to get the supported vector length.
138 *
139 * @return a vector containing the supported vector lengths
140 */
141 virtual std::vector<int32_t> supported_vector_lengths() const = 0;
142};
143} // namespace ckw
144
Gunes Bayir2ae536a2023-07-05 11:39:37 +0100145#endif /* COMPUTE_KERNEL_WRITER_SRC_ITILE */