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