From d5462ff012b3398addb1140d5c52c65ea16a27a5 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 3 Jul 2019 19:33:57 +0100 Subject: COMPMID-2435: Update GPU target definitions - Add Valhall architecture - Map GPU instances to the new architecture Change-Id: I5dd96b1425bded0e34eb59b56a0009bea947c386 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1478 Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- utils/TypePrinter.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 1f60537c2a..6ba6f45f8c 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -1902,6 +1902,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const GPUTarget &gpu_targe case GPUTarget::BIFROST: os << "BIFROST"; break; + case GPUTarget::VALHALL: + os << "VALHALL"; + break; case GPUTarget::T600: os << "T600"; break; @@ -1929,12 +1932,15 @@ inline ::std::ostream &operator<<(::std::ostream &os, const GPUTarget &gpu_targe case GPUTarget::G76: os << "G76"; break; - case GPUTarget::TTRX: - os << "TTRX"; + case GPUTarget::G77: + os << "G77"; break; case GPUTarget::TBOX: os << "TBOX"; break; + case GPUTarget::TODX: + os << "TODX"; + break; default: ARM_COMPUTE_ERROR("NOT_SUPPORTED!"); } -- cgit v1.2.1