blob: 8fbee151fcefa79ec96e779fda5a4fc299400731 [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 "ClReshapeUint8Workload.hpp"
David Beckac42efd2018-09-26 17:41:13 +01007#include <backends/cl/ClTensorHandle.hpp>
8#include <backends/CpuTensorHandle.hpp>
telsoa014fcda012018-03-09 14:13:49 +00009
Matthew Bentham14e46692018-09-20 15:35:30 +010010#include "ClWorkloadUtils.hpp"
11
telsoa014fcda012018-03-09 14:13:49 +000012namespace armnn
13{
14ClReshapeUint8Workload::ClReshapeUint8Workload(const ReshapeQueueDescriptor& descriptor, const WorkloadInfo& info)
15 : Uint8Workload<ReshapeQueueDescriptor>(descriptor, info)
16{
17 m_Data.ValidateInputsOutputs("ClReshapeUint8Workload", 1, 1);
18
19 arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
20 arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
21 m_Layer.configure(&input, &output);
22}
23
24void ClReshapeUint8Workload::Execute() const
25{
telsoa01c577f2c2018-08-31 09:22:23 +010026 ARMNN_SCOPED_PROFILING_EVENT_CL("ClReshapeUint8Workload_Execute");
telsoa014fcda012018-03-09 14:13:49 +000027
28 m_Layer.run();
29}
30
Matthew Bentham14e46692018-09-20 15:35:30 +010031} //namespace armnn