From ebbae9411f1babe6bba9966ba83c540d11e77410 Mon Sep 17 00:00:00 2001 From: Dana Zlotnik Date: Thu, 3 Feb 2022 12:52:15 +0200 Subject: Decouple CpuDepthwiseConv2dNativeKernel Resolves COMPMID-4632 Change-Id: I5e2a9f0f7801a2afaa35de871ab29cd7238923fd Signed-off-by: Dana Zlotnik Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7115 Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena Comments-Addressed: Arm Jenkins --- arm_compute/core/Utils.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'arm_compute/core/Utils.h') diff --git a/arm_compute/core/Utils.h b/arm_compute/core/Utils.h index a279ef310a..fd9a0ee708 100644 --- a/arm_compute/core/Utils.h +++ b/arm_compute/core/Utils.h @@ -1238,6 +1238,9 @@ inline std::string cpu_impl_dt(const DataType &data_type) case DataType::QSYMM16: ret = "qs16"; break; + case DataType::QSYMM8_PER_CHANNEL: + ret = "qp8"; + break; default: ARM_COMPUTE_ERROR("Unsupported."); } -- cgit v1.2.1