IVGCVSW-4760 Change the offsets in the counter directory body_header to be from the...
[platform/upstream/armnn.git] / src / profiling / TimelinePacketWriterFactory.cpp
1 //
2 // Copyright © 2019 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5
6 #include "TimelinePacketWriterFactory.hpp"
7
8 #include "SendTimelinePacket.hpp"
9
10 namespace armnn
11 {
12
13 namespace profiling
14 {
15
16 std::unique_ptr<ISendTimelinePacket> TimelinePacketWriterFactory::GetSendTimelinePacket() const
17 {
18     return std::make_unique<SendTimelinePacket>(m_BufferManager);
19 }
20
21 } // namespace profiling
22
23 } // namespace armnn