aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingGuidTest.cpp
diff options
context:
space:
mode:
authorCathal Corbett <cathal.corbett@arm.com>2022-02-25 15:33:28 +0000
committerCathal Corbett <cathal.corbett@arm.com>2022-03-01 11:44:14 +0000
commit5aa9fd7ac6bf8dad576fa4a0a32aa3dae98d11ab (patch)
tree23a3a0d5ca5143924277f34c98d36cf7b99430a7 /src/profiling/test/ProfilingGuidTest.cpp
parent1fc448ad2455ad31b96a3891f847125a3295d75a (diff)
downloadarmnn-5aa9fd7ac6bf8dad576fa4a0a32aa3dae98d11ab.tar.gz
IVGCVSW-6704 Change the namespace from armnn::profiling to arm::pipe
* Updated ABI version to 29 due to being the first ABI break in 22.05 !android-nn-driver:7226 Signed-off-by: Cathal Corbett <cathal.corbett@arm.com> Change-Id: I9c50007dcd5b5e792757e7bd1213606df5ffec36
Diffstat (limited to 'src/profiling/test/ProfilingGuidTest.cpp')
-rw-r--r--src/profiling/test/ProfilingGuidTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/profiling/test/ProfilingGuidTest.cpp b/src/profiling/test/ProfilingGuidTest.cpp
index 30cfae82ca..0537badc33 100644
--- a/src/profiling/test/ProfilingGuidTest.cpp
+++ b/src/profiling/test/ProfilingGuidTest.cpp
@@ -14,7 +14,7 @@
#include <fmt/format.h>
#include <thread>
-using namespace armnn::profiling;
+using namespace arm::pipe;
TEST_SUITE("ProfilingGuidTests")
{
@@ -93,10 +93,10 @@ TEST_CASE("StaticGuidGeneratorCollisionTest")
// If we're running on a 32bit system it is more likely to get a GUID clash over 1 million executions.
// We can generally detect this when the GUID turns out to be MIN_STATIC_GUID. Output a warning
// message rather than error in this case.
- if (guid == ProfilingGuid(armnn::profiling::MIN_STATIC_GUID))
+ if (guid == ProfilingGuid(MIN_STATIC_GUID))
{
WARN("MIN_STATIC_GUID returned more than once from GenerateStaticId.");
- }
+ }
else
{
FAIL(fmt::format("GUID collision occurred: {} -> {}", str, guid));