From 9265a88c0064dbcf5ad4694bbdcce1b335a394e6 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Thu, 10 Mar 2022 23:35:26 +0000 Subject: IVGCVSW-6844 replace armnn:IgnoreUnused with arm::pipe::IgnoreUnused in profiling code Change-Id: Ifbdfb034deda2f792ac1069dac808917606ccc9e Signed-off-by: Jim Flynn --- src/profiling/test/ProfilingTests.cpp | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/profiling/test/ProfilingTests.cpp') diff --git a/src/profiling/test/ProfilingTests.cpp b/src/profiling/test/ProfilingTests.cpp index 9873527aa9..43938cff7f 100644 --- a/src/profiling/test/ProfilingTests.cpp +++ b/src/profiling/test/ProfilingTests.cpp @@ -31,13 +31,12 @@ #include #include -#include - #include #include #include #include +#include #include #include #include @@ -1772,12 +1771,12 @@ TEST_CASE("CounterSelectionCommandHandlerParseData") { bool IsCounterRegistered(uint16_t counterUid) const override { - armnn::IgnoreUnused(counterUid); + arm::pipe::IgnoreUnused(counterUid); return true; } bool IsCounterRegistered(const std::string& counterName) const override { - armnn::IgnoreUnused(counterName); + arm::pipe::IgnoreUnused(counterName); return true; } uint16_t GetCounterCount() const override @@ -1786,12 +1785,12 @@ TEST_CASE("CounterSelectionCommandHandlerParseData") } uint32_t GetAbsoluteCounterValue(uint16_t counterUid) const override { - armnn::IgnoreUnused(counterUid); + arm::pipe::IgnoreUnused(counterUid); return 0; } uint32_t GetDeltaCounterValue(uint16_t counterUid) override { - armnn::IgnoreUnused(counterUid); + arm::pipe::IgnoreUnused(counterUid); return 0; } }; @@ -2320,12 +2319,12 @@ TEST_CASE("CheckPeriodicCounterCaptureThread") //not used bool IsCounterRegistered(uint16_t counterUid) const override { - armnn::IgnoreUnused(counterUid); + arm::pipe::IgnoreUnused(counterUid); return false; } bool IsCounterRegistered(const std::string& counterName) const override { - armnn::IgnoreUnused(counterName); + arm::pipe::IgnoreUnused(counterName); return false; } uint16_t GetCounterCount() const override -- cgit v1.2.1