aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/cl/CLTile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'compute_kernel_writer/src/cl/CLTile.cpp')
-rw-r--r--compute_kernel_writer/src/cl/CLTile.cpp22
1 files changed, 2 insertions, 20 deletions
diff --git a/compute_kernel_writer/src/cl/CLTile.cpp b/compute_kernel_writer/src/cl/CLTile.cpp
index a46f692a5c..bc544ecedf 100644
--- a/compute_kernel_writer/src/cl/CLTile.cpp
+++ b/compute_kernel_writer/src/cl/CLTile.cpp
@@ -41,7 +41,7 @@ CLTile::CLTile(const std::string &name, const TileInfo &info)
_info = info;
}
-TileVariable CLTile::scalar(int32_t col, int32_t row) const
+TileVariable CLTile::scalar(int32_t row, int32_t col) const
{
// Clamp to nearest valid edge
col = clamp(col, static_cast<int32_t>(0), _info.width() - 1);
@@ -74,7 +74,7 @@ TileVariable CLTile::vector(int32_t row) const
return t;
}
-TileVariable CLTile::vector(int32_t col_start, int32_t width, int32_t row) const
+TileVariable CLTile::vector(int32_t row, int32_t col_start, int32_t width) const
{
// Validate the new vector length
cl_validate_vector_length(width);
@@ -112,11 +112,6 @@ std::vector<TileVariable> CLTile::all() const
return vars;
}
-std::vector<int32_t> CLTile::supported_vector_lengths() const
-{
- return std::vector<int32_t> {1, 2, 3, 4, 8, 16};
-}
-
bool CLTile::is_assignable() const
{
return true;
@@ -140,17 +135,4 @@ std::string CLTile::create_var_name(int32_t row) const
return var_name;
}
-
-void CLTile::validate_tile_info(const TileInfo &info) const
-{
- if(cl_validate_vector_length(info.width()))
- {
- COMPUTE_KERNEL_WRITER_ERROR_ON_MSG("Unsupported TileInfo width");
- }
-
- if(info.data_type() == DataType::Unknown)
- {
- COMPUTE_KERNEL_WRITER_ERROR_ON_MSG("DataType::Unknown is not supported");
- }
-}
} // namespace ckw \ No newline at end of file