blob: 47ce1cf731d28eb898cb9fc9879531351bd9175e [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 "RefMergerUint8Workload.hpp"
7
8#include "Merger.hpp"
9
10#include "Profiling.hpp"
11
12namespace armnn
13{
14
15void RefMergerUint8Workload::Execute() const
16{
17 ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefMergerUint8Workload_Execute");
18 Merger<uint8_t>(m_Data);
19}
20
21} //namespace armnn