aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/backends/RefWorkloads/RefMergerFloat32Workload.cpp
blob: 41d3c05d4bd8396a6b56f5d28ec9774e7a5e37b9 (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 "RefMergerFloat32Workload.hpp"

#include "Merger.hpp"

#include "Profiling.hpp"

namespace armnn
{

void RefMergerFloat32Workload::Execute() const
{
    ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefMergerFloat32Workload_Execute");
    Merger<float>(m_Data);
}

} //namespace armnn