aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2022-01-19 10:06:45 +0000
committerGian Marco Iodice <gianmarco.iodice@arm.com>2022-02-07 16:38:42 +0000
commitab2bc739525d3feb1ab1eef048b571bf270ef937 (patch)
tree5bef99a4c8adbb3f750e71e843ec200fd5260abd /utils
parent9d9ad33df8c06184c23bd9ef25f95fdfe1846ad5 (diff)
downloadComputeLibrary-ab2bc739525d3feb1ab1eef048b571bf270ef937.tar.gz
Adding support for Arm Mali-G710
Resolves COMPUTE-13901 Change-Id: Ib83d737066a55ab6452bdc34e3e4cba2d466d72a Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/6971 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giorgio Arena <giorgio.arena@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index e152cf6fc3..664a39d150 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2021 Arm Limited.
+ * Copyright (c) 2017-2022 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -2266,8 +2266,8 @@ inline ::std::ostream &operator<<(::std::ostream &os, const GPUTarget &gpu_targe
case GPUTarget::G31:
os << "G31";
break;
- case GPUTarget::TODX:
- os << "TODX";
+ case GPUTarget::G710:
+ os << "G710";
break;
default:
ARM_COMPUTE_ERROR("NOT_SUPPORTED!");