blob: b1f8a32ee706b795298a1616f566618f42473883 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5
6#include "RefMergerFloat32Workload.hpp"
7
8#include "Merger.hpp"
9
10#include "Profiling.hpp"
11
12namespace armnn
13{
14
15void RefMergerFloat32Workload::Execute() const
16{
17 ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefMergerFloat32Workload_Execute");
18 Merger<float>(m_Data);
19}
20
21} //namespace armnn