// // Copyright © 2017 Arm Ltd. All rights reserved. // SPDX-License-Identifier: MIT // #include "RefConcatWorkload.hpp" #include "Merger.hpp" #include "Profiling.hpp" namespace armnn { void RefConcatWorkload::Execute() const { ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefConcatWorkload_Execute"); Merger(m_Data); } } //namespace armnn