aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Utils.h
diff options
context:
space:
mode:
authorYair Schwarzbaum <yair.schwarzbaum@arm.com>2022-02-01 08:55:56 +0200
committerYair Schwarzbaum <yair.schwarzbaum@arm.com>2022-03-03 10:16:39 +0000
commit298b2c0526615fc1f0242c2792fe2c51a4f0c44a (patch)
treee47e5986e805e29fed4afca59c76e5375076cff2 /arm_compute/core/Utils.h
parent918a9fb4aa4be23ca4261c241e9e52acc42f9bb3 (diff)
downloadComputeLibrary-298b2c0526615fc1f0242c2792fe2c51a4f0c44a.tar.gz
Decouple castKernel
Resolves: COMPMID-4625 Signed-off-by: Yair Schwarzbaum <yair.schwarzbaum@arm.com> Change-Id: I3c30f007804b179e5e2b439f421fbd4e57fb02e1 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7149 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com>
Diffstat (limited to 'arm_compute/core/Utils.h')
-rw-r--r--arm_compute/core/Utils.h3
1 files changed, 3 insertions, 0 deletions
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.");
}