aboutsummaryrefslogtreecommitdiff
path: root/src/core/GPUTarget.cpp
diff options
context:
space:
mode:
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" }
};