From 298b2c0526615fc1f0242c2792fe2c51a4f0c44a Mon Sep 17 00:00:00 2001 From: Yair Schwarzbaum Date: Tue, 1 Feb 2022 08:55:56 +0200 Subject: Decouple castKernel Resolves: COMPMID-4625 Signed-off-by: Yair Schwarzbaum Change-Id: I3c30f007804b179e5e2b439f421fbd4e57fb02e1 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7149 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Giorgio Arena --- 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 fd9a0ee708..2d774770ae 100644 --- a/arm_compute/core/Utils.h +++ b/arm_compute/core/Utils.h @@ -1241,6 +1241,9 @@ inline std::string cpu_impl_dt(const DataType &data_type) case DataType::QSYMM8_PER_CHANNEL: ret = "qp8"; break; + case DataType::BFLOAT16: + ret = "bf16"; + break; default: ARM_COMPUTE_ERROR("Unsupported."); } -- cgit v1.2.1