aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/src/cl/CLTile.cpp
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2023-06-15 17:40:28 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2023-06-20 14:03:01 +0000
commit68e9c4dfd3c02b3f2e25290f9ad9c3b0bc001d25 (patch)
treea846a18407fb47c9e56c3f617dc4f02793aa413e /compute_kernel_writer/src/cl/CLTile.cpp
parent59b9ff0adac8b7d7044b4a74c23b710fe1062d10 (diff)
downloadComputeLibrary-68e9c4dfd3c02b3f2e25290f9ad9c3b0bc001d25.tar.gz
Implement CLConstantTile
- Create tile object to store constant variables - Add unit tests for the CLConstantTile - Extend unit test for CLTile Resolves COMPMID-5786 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Change-Id: I351d8b88327e071791b781a04a6ab4990c89c04d Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9794 Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com>
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