blob: 8eaac5ac1202ef16f4022bc483377bfa8d8e60f9 [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 */
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +010024#ifndef CKW_SRC_ITILE_H
25#define CKW_SRC_ITILE_H
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{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +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{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +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
Gunes Bayir3c776062023-07-12 14:50:56 +010051/** Interface to provide support for scalar access for a Tile.
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000052 */
Gunes Bayir3c776062023-07-12 14:50:56 +010053class IScalarAccess
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000054{
55public:
Gunes Bayir3c776062023-07-12 14:50:56 +010056 virtual ~IScalarAccess() = default;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010057
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000058 /** Method to get the scalar variable from a tile as a string
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000059 * @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 +010060 * @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 +000061 *
62 * @return the @ref TileVariable
63 */
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010064 virtual TileVariable scalar(int32_t row, int32_t col) const = 0;
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000065};
66
Gunes Bayir3c776062023-07-12 14:50:56 +010067/** Interface to provide support for vector access for a tile.
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000068 */
Gunes Bayir3c776062023-07-12 14:50:56 +010069class IVectorAccess
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000070{
71public:
Gunes Bayir3c776062023-07-12 14:50:56 +010072 virtual ~IVectorAccess() = default;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010073
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000074 /** Method to get the vector variable from a tile.
75 * The user can query the list of supported vector lengths through the supported_vector_lengths() method.
76 *
77 * @param[in] row Tile row. If out-of-bound, the row is clamped to the nearest valid edge
78 *
79 * @return the vector variable as a @ref TileVariable
80 */
81 virtual TileVariable vector(int32_t row) const = 0;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010082
Gunes Bayir3c776062023-07-12 14:50:56 +010083 /** Method to get a sub-vector variable. The length of the sub-vector must be supported by the derived IVectorAccess class
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000084 *
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010085 * @param[in] row Tile row. If out-of-bound, the row is clamped to the nearest valid edge
Gunes Bayir3c776062023-07-12 14:50:56 +010086 * @param[in] col_start Tile starting column to get the sub-vector. If out-of-bound, the derived IVectorAccess class may throw an assert.
87 * @param[in] width The width of the sub-vector. The width must be supported by the derived IVectorAccess class and the last element must be in-bound.
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000088 *
89 * @return the vector variable as a @ref TileVariable
90 */
Gian Marco Iodice68e9c4d2023-06-15 17:40:28 +010091 virtual TileVariable vector(int32_t row, int32_t col_start, int32_t width) const = 0;
Nikolaj Jensenacea4072023-07-03 09:44:42 +010092
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +000093 /** Method to get the supported vector length.
94 *
95 * @return a vector containing the supported vector lengths
96 */
97 virtual std::vector<int32_t> supported_vector_lengths() const = 0;
98};
Gunes Bayir5e842512023-07-25 22:32:05 +010099
100/** Tile base class.
101 * A Tile is a collection of variables (either program variables or constants) used to express a 2D data.
102 */
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +0100103class ITile : public IScalarAccess
Gunes Bayir5e842512023-07-25 22:32:05 +0100104{
105public:
106 virtual ~ITile() = default;
107
108 /** Method to get all TileVariable objects
109 *
110 * @return a vector containing all @ref TileVariable objects
111 */
112 virtual std::vector<TileVariable> all() const = 0;
113
114 /** Method to get the name of the tile.
115 *
116 * @return the name of the tile
117 */
118 virtual const std::string &name() const = 0;
119
120 /** Method to get the tile info
121 *
122 * @return the @ref TileInfo
123 */
124 virtual const TileInfo &info() const = 0;
125
126 /** Method to know whether the tile is assignable or not.
127 * For example, a constant tile is not assignable.
128 *
129 * @return true if the tile is assignable
130 */
131 virtual bool is_assignable() const = 0;
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +0100132
133 /** Get whether the tile is scalar, i.e. the width and height are both 1.
134 *
135 * @return true if the tile is scalar.
136 */
137 bool is_scalar() const;
Gunes Bayir5e842512023-07-25 22:32:05 +0100138};
Gian Marco Iodice6c113ed2023-01-19 17:14:26 +0000139} // namespace ckw
140
Viet-Hoa Do2d0c2f52023-08-24 11:48:19 +0100141#endif // CKW_SRC_ITILE_H