blob: 074e8ccaaecc4d7dd75787bf566def7831ef01ef [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 "RefConstantFloat32Workload.hpp"
7
8#include "Profiling.hpp"
9
10namespace armnn
11{
12
13void RefConstantFloat32Workload::Execute() const
14{
15 ARMNN_SCOPED_PROFILING_EVENT(Compute::CpuRef, "RefConstantFloat32Workload_Execute");
16 RefBaseConstantWorkload::Execute();
17}
18
19} //namespace armnn