blob: 152eae93b38db931ff450688dac121449bd9298b [file] [log] [blame]
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//
#include "RefConcatWorkload.hpp"
#include "Concatenate.hpp"
#include "Profiling.hpp"
namespace armnn
{
void RefConcatWorkload::Execute() const
{
ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefConcatWorkload_Execute");
Concatenate(m_Data);
}
} //namespace armnn