aboutsummaryrefslogtreecommitdiff
path: root/src/core/CL/kernels/CLReductionOperationKernel.cpp
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2020-02-07 15:25:17 +0000
committerMichalis Spyrou <michalis.spyrou@arm.com>2020-02-07 17:17:18 +0000
commit9bd49f979907fdef82a50f64a486c5d69df7ae39 (patch)
tree97782d8130314068cd96d6a3a6c499ea7ed2f4f0 /src/core/CL/kernels/CLReductionOperationKernel.cpp
parent2f60221e60b69852918581b4eb450a0f81455a46 (diff)
downloadComputeLibrary-9bd49f979907fdef82a50f64a486c5d69df7ae39.tar.gz
COMPMID-2838: Add support for QASYMM8 production reduce operation to CL
Change-Id: I3e642ea0bffca038a697b8cfb5db38e337876edc Signed-off-by: Michalis Spyrou <michalis.spyrou@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2703 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'src/core/CL/kernels/CLReductionOperationKernel.cpp')
-rw-r--r--src/core/CL/kernels/CLReductionOperationKernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/CL/kernels/CLReductionOperationKernel.cpp b/src/core/CL/kernels/CLReductionOperationKernel.cpp
index a2a5f2be6d..ff824fce33 100644
--- a/src/core/CL/kernels/CLReductionOperationKernel.cpp
+++ b/src/core/CL/kernels/CLReductionOperationKernel.cpp
@@ -152,7 +152,7 @@ void CLReductionOperationKernel::configure(const ICLTensor *input, ICLTensor *ou
if(is_data_type_quantized(data_type))
{
- data_type_promoted = get_cl_dot8_acc_type_from_data_type(data_type);
+ data_type_promoted = "int";
}
else
{