blob: 151f1e0ee7e38b8f90796c643bb84abd95612ad0 [file] [log] [blame]
arovir019e53a352018-08-31 15:26:35 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
arovir019e53a352018-08-31 15:26:35 +01004//
5
6#include "ClMergerFloatWorkload.hpp"
7
Matthew Bentham14e46692018-09-20 15:35:30 +01008#include "ClWorkloadUtils.hpp"
arovir019e53a352018-08-31 15:26:35 +01009
10namespace armnn
11{
12
13void ClMergerFloatWorkload::Execute() const
14{
15 ARMNN_SCOPED_PROFILING_EVENT_CL("ClMergerFloatWorkload_Execute");
16 ClBaseMergerWorkload::Execute();
17}
18
19} //namespace armnn
20