aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/test/PrintPacketHeaderHandler.hpp
blob: 397da0b8ea3d0938976e96fe4a69a368fd05992f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <armnn/profiling/ILocalPacketHandler.hpp>

#include <common/include/Packet.hpp>

namespace armnn
{

namespace profiling
{

class PrintPacketHeaderHandler : public ILocalPacketHandler
{
    virtual std::vector<uint32_t> GetHeadersAccepted();

    virtual void HandlePacket(const arm::pipe::Packet& packet);
};

} // namespace profiling

} // namespace armnn