blob: 7f836cba2f90353306f0cb3dca844d5d3d8f49a2 [file] [log] [blame]
Francis Murtagh11f99b42019-08-16 11:28:52 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "CommandHandlerFunctor.hpp"
7
Aron Virginas-Tare898db92019-08-22 12:56:34 +01008namespace armnn
9{
10
11namespace profiling
12{
13
Jim Flynn397043f2019-10-17 17:37:10 +010014uint32_t CommandHandlerFunctor::GetFamilyId() const
15{
16 return m_FamilyId;
17}
18
Francis Murtagh11f99b42019-08-16 11:28:52 +010019uint32_t CommandHandlerFunctor::GetPacketId() const
20{
21 return m_PacketId;
22}
23
24uint32_t CommandHandlerFunctor::GetVersion() const
25{
26 return m_Version;
Aron Virginas-Tare898db92019-08-22 12:56:34 +010027}
28
29} // namespace profiling
30
31} // namespace armnn