diff options
author | Georgios Pinitas <georgios.pinitas@arm.com> | 2020-02-26 09:58:13 +0000 |
---|---|---|
committer | Georgios Pinitas <georgios.pinitas@arm.com> | 2020-03-05 15:15:15 +0000 |
commit | e8291acc1d9e89c9274d31f0d5bb4779eb95588c (patch) | |
tree | 5a0fef36d6daabe387174e55b60de54557c75291 /utils | |
parent | aa85cdf22802cb892d7fa422ca505a43d84adb38 (diff) | |
download | armcl-e8291acc1d9e89c9274d31f0d5bb4779eb95588c.tar.gz armcl-e8291acc1d9e89c9274d31f0d5bb4779eb95588c.tar.bz2 armcl-e8291acc1d9e89c9274d31f0d5bb4779eb95588c.zip |
COMPMID-3152: Initial Bfloat16 support
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com>
Change-Id: Ie6959e37e13731c86b2ee29392a99a293450a1b4
Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2824
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TypePrinter.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 50eb4753d..79ec367a5 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -665,6 +665,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const DataType &data_type) case DataType::S64: os << "S64"; break; + case DataType::BFLOAT16: + os << "BFLOAT16"; + break; case DataType::F16: os << "F16"; break; |