blob: 6564f3cea54ab4e3ced32d8bfaa03b9c509a9e9e [file] [log] [blame]
//
// Copyright © 2020 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#pragma once
#include <armnn/profiling/ILocalPacketHandler.hpp>
#include <Packet.hpp>
namespace armnn
{
namespace profiling
{
class PrintPacketHeaderHandler : public ILocalPacketHandler
{
virtual std::vector<uint32_t> GetHeadersAccepted();
virtual void HandlePacket(const Packet& packet);
};
} // namespace profiling
} // namespace armnn