aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorPablo Marquez Tello <pablo.tello@arm.com>2021-06-25 14:49:37 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2021-06-28 11:50:48 +0000
commitb1496e6a1074c90fba64633ec92fa202f5f7d1d8 (patch)
treec00bdde29a6b2ab58016c5aff6ee23fe6adae123 /utils
parentd7316eb877cc4ff8573219374335e917b19a0203 (diff)
downloadComputeLibrary-b1496e6a1074c90fba64633ec92fa202f5f7d1d8.tar.gz
Add code to detect Mali(TM) G31
* Fixed a problem which made the library choose the Valhall path instead of Bifrost * Set block sizes to 4 for u8 on G31 * Resolves MLCE-463 Change-Id: I577f57ec96f740db15d6640e34172318a82c5778 Signed-off-by: Pablo Marquez Tello <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5858 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'utils')
-rw-r--r--utils/TypePrinter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index e8cb6e85b7..e30bdc4157 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -1841,6 +1841,9 @@ inline ::std::ostream &operator<<(::std::ostream &os, const GPUTarget &gpu_targe
case GPUTarget::G78:
os << "G78";
break;
+ case GPUTarget::G31:
+ os << "G31";
+ break;
case GPUTarget::TODX:
os << "TODX";
break;