aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/ProfilingTests.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/test/ProfilingTests.hpp')
-rw-r--r--src/profiling/test/ProfilingTests.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/profiling/test/ProfilingTests.hpp b/src/profiling/test/ProfilingTests.hpp
index ed3e03db77..70bf6138cf 100644
--- a/src/profiling/test/ProfilingTests.hpp
+++ b/src/profiling/test/ProfilingTests.hpp
@@ -79,7 +79,7 @@ public:
bool WritePacket(const unsigned char* buffer, uint32_t length) override
{
- armnn::IgnoreUnused(buffer, length);
+ arm::pipe::IgnoreUnused(buffer, length);
return false;
}
@@ -141,7 +141,7 @@ public:
arm::pipe::Packet ReadPacket(uint32_t timeout) override
{
- armnn::IgnoreUnused(timeout);
+ arm::pipe::IgnoreUnused(timeout);
++m_ReadRequests;
throw arm::pipe::ProfilingException("Simulate a non-timeout error");
}
@@ -160,7 +160,7 @@ class TestProfilingConnectionBadAckPacket : public TestProfilingConnectionBase
public:
arm::pipe::Packet ReadPacket(uint32_t timeout) override
{
- armnn::IgnoreUnused(timeout);
+ arm::pipe::IgnoreUnused(timeout);
// Connection Acknowledged Packet header (word 0, word 1 is always zero):
// 26:31 [6] packet_family: Control Packet Family, value 0b000000
// 16:25 [10] packet_id: Packet identifier, value 0b0000000001
@@ -183,7 +183,7 @@ public:
void operator()(const arm::pipe::Packet& packet) override
{
- armnn::IgnoreUnused(packet);
+ arm::pipe::IgnoreUnused(packet);
m_Count++;
}