From bd4f6b9ed37ed7a222e36ce6823ba96396f60deb Mon Sep 17 00:00:00 2001 From: Viet-Hoa Do Date: Tue, 30 May 2023 09:34:32 +0100 Subject: 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 Change-Id: I9d80e15325e1d953feb87c1f2eb61a587bb9ab5e Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9814 Reviewed-by: Jakub Sujak Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins --- compute_kernel_writer/include/ckw/TileInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compute_kernel_writer/include/ckw/TileInfo.h') 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 */ -- cgit v1.2.1