aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2021-05-19 10:29:03 +0100
committerManuel Bottini <manuel.bottini@arm.com>2021-05-19 15:49:52 +0000
commitb7b6066b676aca315153806ef3cbcddb70b8c60a (patch)
tree4faba260f6f5b75806965c9dd30b2400a65dba74
parent431889a14a0bfee7731c84f6763f75cb30b393df (diff)
downloadComputeLibrary-b7b6066b676aca315153806ef3cbcddb70b8c60a.tar.gz
clCreateKernel failure of CL/ChannelShuffle/U8/
Create right vector for size of 16 elements Resolves: COMPMID-4532 Change-Id: I74dc89d158a6aa3f50db710cbc002a92156e2263 Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5673 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sheri Zhang <sheri.zhang@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
-rw-r--r--src/core/CL/cl_kernels/channel_shuffle.cl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/cl_kernels/channel_shuffle.cl b/src/core/CL/cl_kernels/channel_shuffle.cl
index b7272da33a..63af2c6137 100644
--- a/src/core/CL/cl_kernels/channel_shuffle.cl
+++ b/src/core/CL/cl_kernels/channel_shuffle.cl
@@ -193,7 +193,7 @@ __kernel void channel_shuffle_nhwc(TENSOR4D_DECLARATION(src),
*(input_ptr + in_channels.s7)
};
#elif VEC_SIZE == 16
- VEC_DATA_TYPE(DATA_TYPE, 8)
+ VEC_DATA_TYPE(DATA_TYPE, 16)
out0 =
{
*(input_ptr + in_channels.s0),