aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2019-07-03 19:33:57 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-07-05 16:26:21 +0000
commitd5462ff012b3398addb1140d5c52c65ea16a27a5 (patch)
tree223dc0da9a243d286d5d723bfc362a2c940ef976 /arm_compute/core
parent37d080f2f11cfd734104b76512e1fb191486216e (diff)
downloadComputeLibrary-d5462ff012b3398addb1140d5c52c65ea16a27a5.tar.gz
COMPMID-2435: Update GPU target definitions
- Add Valhall architecture - Map GPU instances to the new architecture Change-Id: I5dd96b1425bded0e34eb59b56a0009bea947c386 Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Reviewed-on: https://review.mlplatform.org/c/1478 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/GPUTarget.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/arm_compute/core/GPUTarget.h b/arm_compute/core/GPUTarget.h
index a43df3d08e..2743b94bd5 100644
--- a/arm_compute/core/GPUTarget.h
+++ b/arm_compute/core/GPUTarget.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -37,6 +37,7 @@ enum class GPUTarget
GPU_ARCH_MASK = 0xF00,
MIDGARD = 0x100,
BIFROST = 0x200,
+ VALHALL = 0x300,
T600 = 0x110,
T700 = 0x120,
T800 = 0x130,
@@ -48,8 +49,9 @@ enum class GPUTarget
G52 = 0x240,
G52LIT = 0x241,
G76 = 0x250,
- TTRX = 0x260,
- TBOX = 0x270
+ G77 = 0x310,
+ TBOX = 0x320,
+ TODX = 0x330,
};
/** Enable bitwise operations on GPUTarget enumerations */