From 6bcdc578a388782f5ec80ec348c5dd3f5c1f8363 Mon Sep 17 00:00:00 2001 From: Pablo Marquez Tello Date: Wed, 11 Jan 2023 09:54:00 +0000 Subject: Deprecated BF16 support in DepthConvert * Removed BF16 validation tests for DepthConvert * Revert back to using inline assembly to convert to/from BF16 * Resolves COMPMID-5800 Change-Id: I803b2ad19ead297417f780c97c5b724cca6b394c Signed-off-by: Pablo Marquez Tello Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8929 Reviewed-by: Jakub Sujak Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins Tested-by: Arm Jenkins --- utils/TypePrinter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index a31a0e559b..8f9c24955e 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2022 Arm Limited. + * Copyright (c) 2017-2023 Arm Limited. * * SPDX-License-Identifier: MIT * @@ -482,7 +482,7 @@ inline ::std::ostream &operator<<(::std::ostream &os, const BoundingBoxTransform inline ::std::ostream &operator<<(::std::ostream &os, const bfloat16 &v) { std::stringstream str; - str << static_cast(v); + str << v; os << str.str(); return os; } -- cgit v1.2.1