aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2022-03-10 23:35:26 +0000
committerJim Flynn <jim.flynn@arm.com>2022-03-11 17:33:44 +0000
commit9265a88c0064dbcf5ad4694bbdcce1b335a394e6 (patch)
treeb7e7eda3640cc0a7698d73c580b96c7d6cd635db /src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp
parent91343f34c7bbca5106d36f1dcd06ebcb22810f43 (diff)
downloadarmnn-9265a88c0064dbcf5ad4694bbdcce1b335a394e6.tar.gz
IVGCVSW-6844 replace armnn:IgnoreUnused with arm::pipe::IgnoreUnused in profiling code
Change-Id: Ifbdfb034deda2f792ac1069dac808917606ccc9e Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp')
-rw-r--r--src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp
index f1f1d2410f..5d99feef95 100644
--- a/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp
+++ b/src/profiling/test/ProfilingConnectionDumpToFileDecoratorTests.cpp
@@ -9,10 +9,10 @@
#include <armnnUtils/Filesystem.hpp>
-#include <armnn/utility/IgnoreUnused.hpp>
-
+#include <common/include/IgnoreUnused.hpp>
#include <common/include/NumericCast.hpp>
+
#include <fstream>
#include <sstream>
@@ -53,14 +53,14 @@ public:
bool WritePacket(const unsigned char* buffer, uint32_t length) override
{
- armnn::IgnoreUnused(buffer);
- armnn::IgnoreUnused(length);
+ arm::pipe::IgnoreUnused(buffer);
+ arm::pipe::IgnoreUnused(length);
return true;
}
Packet ReadPacket(uint32_t timeout) override
{
- armnn::IgnoreUnused(timeout);
+ arm::pipe::IgnoreUnused(timeout);
return std::move(*m_Packet);
}