aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/RefWorkloads/RefMergerUint8Workload.cpp
blob: 3f4371b6282c0b5b683ab37b99fe6e0ca8e9b6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// See LICENSE file in the project root for full license information.
//

#include "RefMergerUint8Workload.hpp"

#include "Merger.hpp"

#include "Profiling.hpp"

namespace armnn
{

void RefMergerUint8Workload::Execute() const
{
    ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefMergerUint8Workload_Execute");
    Merger<uint8_t>(m_Data);
}

} //namespace armnn