aboutsummaryrefslogtreecommitdiff
path: root/compute_kernel_writer/prototype/include/ckw/TensorInfo.h
diff options
context:
space:
mode:
authorViet-Hoa Do <viet-hoa.do@arm.com>2023-06-27 14:09:46 +0100
committerViet-Hoa Do <viet-hoa.do@arm.com>2023-07-12 15:46:50 +0000
commitc8e1617807ef1985a39d8f8f5f69c113b758494d (patch)
tree675113cc27d4e95cf61aa719fc29cc98a1ce4a50 /compute_kernel_writer/prototype/include/ckw/TensorInfo.h
parent3c776066a0195f2e99d3503f8b058e468d53b884 (diff)
downloadComputeLibrary-c8e1617807ef1985a39d8f8f5f69c113b758494d.tar.gz
Add compute kernel writer arguments export
* The information is extracted from the prototype argument registry. Partially resolves: COMPMID-6283 Signed-off-by: Viet-Hoa Do <viet-hoa.do@arm.com> Change-Id: Ia6d69b7c2a2e411597e76a7e03b7c92199a16990 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9848 Reviewed-by: SiCong Li <sicong.li@arm.com> 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/prototype/include/ckw/TensorInfo.h')
-rw-r--r--compute_kernel_writer/prototype/include/ckw/TensorInfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/compute_kernel_writer/prototype/include/ckw/TensorInfo.h b/compute_kernel_writer/prototype/include/ckw/TensorInfo.h
index 8eaa6ae314..55f8101a53 100644
--- a/compute_kernel_writer/prototype/include/ckw/TensorInfo.h
+++ b/compute_kernel_writer/prototype/include/ckw/TensorInfo.h
@@ -67,7 +67,7 @@ enum class TensorComponentBitmask : uint32_t
* The data type is represented as an integer. The value of the integer value
* is assigned to retrieve the information through the @ref TensorComponentBitmask.
*/
-enum class TensorComponent : uint32_t
+enum class TensorComponentType : uint32_t
{
Unknown = 0x00000000,
OffsetFirstElement = 0x01000000,
@@ -88,7 +88,7 @@ enum class TensorComponent : uint32_t
/** Compute Kernel Writer tensor storage. The tensor storage represents the type of tensor memory object.
*/
-enum class TensorStorage : uint32_t
+enum class TensorStorageType : uint32_t
{
Unknown = 0x00000000,
BufferUint8Ptr = 0x01000000,