blob: 397da0b8ea3d0938976e96fe4a69a368fd05992f [file] [log] [blame]
//
// 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