aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/Packet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/Packet.cpp')
-rw-r--r--src/profiling/Packet.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/profiling/Packet.cpp b/src/profiling/Packet.cpp
deleted file mode 100644
index 4cfa42bbc9..0000000000
--- a/src/profiling/Packet.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-//
-// Copyright © 2017 Arm Ltd. All rights reserved.
-// SPDX-License-Identifier: MIT
-//
-
-#include "Packet.hpp"
-
-namespace armnn
-{
-
-namespace profiling
-{
-
-std::uint32_t Packet::GetHeader() const
-{
- return m_Header;
-}
-
-std::uint32_t Packet::GetPacketFamily() const
-{
- return m_PacketFamily;
-}
-
-std::uint32_t Packet::GetPacketId() const
-{
- return m_PacketId;
-}
-
-std::uint32_t Packet::GetLength() const
-{
- return m_Length;
-}
-
-const char* const Packet::GetData() const
-{
- return m_Data.get();
-}
-
-std::uint32_t Packet::GetPacketClass() const
-{
- return (m_PacketId >> 3);
-}
-
-std::uint32_t Packet::GetPacketType() const
-{
- return (m_PacketId & 7);
-}
-
-} // namespace profiling
-
-} // namespace armnn