aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/include/ckw/TileInfo.h
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2023-05-30 09:34:32 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-06-27 09:42:51 +0000
commitbd4f6b9ed37ed7a222e36ce6823ba96396f60deb (patch)
treed1117a182d2d5fe8d2cef1ed631e3723b2aca354 /compute_kernel_writer/include/ckw/TileInfo.h
parent8c49f16e5909a9bd5dc6e68638d2e2d8acc2fc66 (diff)
downloadComputeLibrary-bd4f6b9ed37ed7a222e36ce6823ba96396f60deb.tar.gz
Compute kernel writer API and prototype
* Add the public API for compute kernel writer. * Use the prototype as the implementation of the public API. Resolves: COMPMID-5790 Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Change-Id: I9d80e15325e1d953feb87c1f2eb61a587bb9ab5e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9814 Reviewed-by: Jakub Sujak <jakub.sujak@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'compute_kernel_writer/include/ckw/TileInfo.h')
-rw-r--r--compute_kernel_writer/include/ckw/TileInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compute_kernel_writer/include/ckw/TileInfo.h b/compute_kernel_writer/include/ckw/TileInfo.h
index 5f9d037a66..06c910c9fd 100644
--- a/compute_kernel_writer/include/ckw/TileInfo.h
+++ b/compute_kernel_writer/include/ckw/TileInfo.h
@@ -57,10 +57,10 @@ public:
/** Constructor used to initialize a tile with a given data type and tile sizes.
*
* @param[in] dt Tile data type
- * @param[in] w Tile width
* @param[in] h Tile height
+ * @param[in] w Tile width
*/
- TileInfo(DataType dt, int32_t w, int32_t h);
+ TileInfo(DataType dt, int32_t h, int32_t w);
/** Set width */
TileInfo &width(int32_t w);
/** Get width */