aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/TimelinePacketWriterFactory.cpp
blob: b1de629fae82726ee1f5998592369fa4ca6b54c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#include "TimelinePacketWriterFactory.hpp"

#include "SendTimelinePacket.hpp"

namespace armnn
{

namespace profiling
{

std::unique_ptr<ISendTimelinePacket> TimelinePacketWriterFactory::GetSendTimelinePacket() const
{
    return std::make_unique<SendTimelinePacket>(m_BufferManager);
}

} // namespace profiling

} // namespace armnn