aboutsummaryrefslogtreecommitdiff
path: root/src/core/GPUTarget.cpp
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-07-12 10:49:53 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:12 +0000
commitb03f7c5c780fe2df23eb8c5c1b4b1d65bd7f0339 (patch)
tree91130cb09309fbc526de48b2bc538fc71f80f4e8 /src/core/GPUTarget.cpp
parent12be7ab4876f77fecfab903df70791623219b3da (diff)
downloadComputeLibrary-b03f7c5c780fe2df23eb8c5c1b4b1d65bd7f0339.tar.gz
COMPMID-1188 : Rename TNOX to Mali-G76
Change-Id: I136f7aa4bca268abd4fbe4f6ce4bcc2708ec3671 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139689 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'src/core/GPUTarget.cpp')
-rw-r--r--src/core/GPUTarget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/GPUTarget.cpp b/src/core/GPUTarget.cpp
index 547456533a..a14a9c9971 100644
--- a/src/core/GPUTarget.cpp
+++ b/src/core/GPUTarget.cpp
@@ -51,9 +51,9 @@ arm_compute::GPUTarget get_bifrost_target(const std::string &version)
{
return arm_compute::GPUTarget::G51LIT;
}
- else if(version == "TNOX")
+ else if(version == "G76")
{
- return arm_compute::GPUTarget::TNOX;
+ return arm_compute::GPUTarget::G76;
}
else if(version == "TTRX")
{
@@ -106,7 +106,7 @@ const std::string &string_from_target(GPUTarget target)
{ GPUTarget::G51, "g51" },
{ GPUTarget::G51BIG, "g51big" },
{ GPUTarget::G51LIT, "g51lit" },
- { GPUTarget::TNOX, "tnox" },
+ { GPUTarget::G76, "g76" },
{ GPUTarget::TTRX, "ttrx" },
{ GPUTarget::TBOX, "tbox" }
};