aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/GPUTarget.h
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2022-07-11 12:09:45 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2022-08-02 15:24:28 +0000
commit3c4d085da54c3d9727cb31718c5b407c18ff646a (patch)
tree7070f449fc9addea69c05dd34f43e02d7ec10642 /arm_compute/core/GPUTarget.h
parent9b921be1ff7283050eb39d9ce1b10b5c8bfc1300 (diff)
downloadComputeLibrary-3c4d085da54c3d9727cb31718c5b407c18ff646a.tar.gz
Update the GPUTarget list
Resolves COMPMID-5405 Change-Id: I995b5e79bef13529097ed17f7854763a4cf89272 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7986 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/GPUTarget.h')
-rw-r--r--arm_compute/core/GPUTarget.h52
1 files changed, 29 insertions, 23 deletions
diff --git a/arm_compute/core/GPUTarget.h b/arm_compute/core/GPUTarget.h
index 7e2cfe1b6b..affa79a89e 100644
--- a/arm_compute/core/GPUTarget.h
+++ b/arm_compute/core/GPUTarget.h
@@ -33,29 +33,35 @@ namespace arm_compute
/** Available GPU Targets */
enum class GPUTarget
{
- UNKNOWN = 0x101,
- GPU_ARCH_MASK = 0xF00,
- MIDGARD = 0x100,
- BIFROST = 0x200,
- VALHALL = 0x300,
- T600 = 0x110,
- T700 = 0x120,
- T800 = 0x130,
- G71 = 0x210,
- G72 = 0x220,
- G51 = 0x230,
- G51BIG = 0x231,
- G51LIT = 0x232,
- G52 = 0x240,
- G52LIT = 0x241,
- G31 = 0x242,
- G76 = 0x250,
- G77 = 0x310,
- G57 = 0x311,
- G78 = 0x320,
- G710 = 0x330,
- G715 = 0x340,
- G615 = 0x341
+ UNKNOWN = 0x101,
+ GPU_ARCH_MASK = 0xF00,
+ GPU_GENERATION_MASK = 0x0F0,
+ MIDGARD = 0x100,
+ BIFROST = 0x200,
+ VALHALL = 0x300,
+ T600 = 0x110,
+ T700 = 0x120,
+ T800 = 0x130,
+ G71 = 0x210,
+ G72 = 0x220,
+ G51 = 0x221,
+ G51BIG = 0x222,
+ G51LIT = 0x223,
+ G31 = 0x224,
+ G76 = 0x230,
+ G52 = 0x231,
+ G52LIT = 0x232,
+ G77 = 0x310,
+ G57 = 0x311,
+ G78 = 0x320,
+ G68 = 0x321,
+ G78AE = 0x330,
+ G710 = 0x340,
+ G610 = 0x341,
+ G510 = 0x342,
+ G310 = 0x343,
+ G715 = 0x350,
+ G615 = 0x351,
};
/** Enable bitwise operations on GPUTarget enumerations */