blob: f186add35795748e03188ccf10e1609155d37b2f [file] [log] [blame]
//
// Copyright © 2019 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "RequestCounterDirectoryCommandHandler.hpp"
namespace armnn
{
namespace profiling
{
void RequestCounterDirectoryCommandHandler::operator()(const Packet& packet)
{
BOOST_ASSERT(packet.GetLength() == 0);
// Write packet to Counter Stream Buffer
m_SendCounterPacket.SendCounterDirectoryPacket(m_CounterDirectory);
}
} // namespace profiling
} // namespace armnn