blob: a05e733c07d312d4af624f83552560ed7424c1cf [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 arm
{
namespace pipe
{
class PrintPacketHeaderHandler : public ILocalPacketHandler
{
virtual std::vector<uint32_t> GetHeadersAccepted();
virtual void HandlePacket(const arm::pipe::Packet& packet);
};
} // namespace pipe
} // namespace arm