blob: 532d0d45dae4a8aa38172c4bb566cd7191eff025 [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
Matthew Benthamab8cdc12018-09-17 11:17:41 +01006#include "ClFullyConnectedWorkload.hpp"
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +00007#include <cl/ClTensorHandle.hpp>
Colm Donelan0c479742021-12-10 12:43:54 +00008#include <armnn/backends/TensorHandle.hpp>
Aron Virginas-Tarc9cc8042018-11-01 16:15:57 +00009#include <aclCommon/ArmComputeTensorUtils.hpp>
10#include <aclCommon/ArmComputeUtils.hpp>
11#include <cl/ClLayerSupport.hpp>
telsoa014fcda012018-03-09 14:13:49 +000012
Matthew Bentham14e46692018-09-20 15:35:30 +010013#include "ClWorkloadUtils.hpp"
14
telsoa014fcda012018-03-09 14:13:49 +000015namespace armnn
16{
17using namespace armcomputetensorutils;
18
telsoa01c577f2c2018-08-31 09:22:23 +010019arm_compute::Status ClFullyConnectedWorkloadValidate(const TensorInfo& input,
20 const TensorInfo& output,
21 const TensorInfo& weights,
22 const TensorInfo& biases,
Mike Kelly07810fc2020-11-12 10:58:48 +000023 const FullyConnectedDescriptor& descriptor,
24 const ActivationDescriptor* activationDescriptor)
telsoa01c577f2c2018-08-31 09:22:23 +010025{
26 const arm_compute::TensorInfo aclInput = BuildArmComputeTensorInfo(input);
27 const arm_compute::TensorInfo aclOutput = BuildArmComputeTensorInfo(output);
28 const arm_compute::TensorInfo aclWeights = BuildArmComputeTensorInfo(weights);
29
30 arm_compute::TensorInfo aclBiases;
Keith Davisbcd860a2021-08-05 14:20:33 +010031 arm_compute::TensorInfo* optionalAclBiases = nullptr;
telsoa01c577f2c2018-08-31 09:22:23 +010032 if (descriptor.m_BiasEnabled)
33 {
Keith Davisbcd860a2021-08-05 14:20:33 +010034 aclBiases = BuildArmComputeTensorInfo(biases);
telsoa01c577f2c2018-08-31 09:22:23 +010035 optionalAclBiases = &aclBiases;
36 }
37
38 const arm_compute::FullyConnectedLayerInfo fullyConnectedLayerInfo =
Mike Kelly07810fc2020-11-12 10:58:48 +000039 ConvertFullyConnectedDescriptorToAclFullyConnectedLayerInfo(descriptor, activationDescriptor);
telsoa01c577f2c2018-08-31 09:22:23 +010040
41 return arm_compute::CLFullyConnectedLayer::validate(&aclInput,
42 &aclWeights,
43 optionalAclBiases,
44 &aclOutput,
45 fullyConnectedLayerInfo);
46}
47
Sadik Armagane9444752020-12-02 11:28:58 +000048ClFullyConnectedWorkload::ClFullyConnectedWorkload(
49 const FullyConnectedQueueDescriptor& descriptor,
50 const WorkloadInfo& info,
51 std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager,
52 const arm_compute::CLCompileContext& clCompileContext)
Keith Davisbcd860a2021-08-05 14:20:33 +010053 : BaseWorkload<FullyConnectedQueueDescriptor>(descriptor, info), m_FullyConnectedLayer(memoryManager)
telsoa014fcda012018-03-09 14:13:49 +000054{
Keith Davisbcd860a2021-08-05 14:20:33 +010055 // Add details for profiling output
56 WorkloadInfo detailsInfo;
57
58 detailsInfo.m_InputTensorInfos = info.m_InputTensorInfos;
59 detailsInfo.m_OutputTensorInfos = info.m_OutputTensorInfos;
60 detailsInfo.m_WeightsTensorInfo = armnn::Optional<armnn::TensorInfo>(descriptor.m_Weight->GetTensorInfo());
61 if (descriptor.m_Parameters.m_BiasEnabled)
62 {
63 detailsInfo.m_BiasTensorInfo = armnn::Optional<armnn::TensorInfo>(descriptor.m_Bias->GetTensorInfo());
64 }
65
66 // Report Profiling Details
67 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClFullyConnectedWorkload_Construct",
68 descriptor.m_Parameters,
69 detailsInfo,
70 this->GetGuid());
71
telsoa01c577f2c2018-08-31 09:22:23 +010072 m_WeightsTensor = std::make_unique<arm_compute::CLTensor>();
73 BuildArmComputeTensor(*m_WeightsTensor, m_Data.m_Weight->GetTensorInfo());
telsoa014fcda012018-03-09 14:13:49 +000074
telsoa014fcda012018-03-09 14:13:49 +000075 if (m_Data.m_Parameters.m_BiasEnabled)
76 {
telsoa01c577f2c2018-08-31 09:22:23 +010077 m_BiasesTensor = std::make_unique<arm_compute::CLTensor>();
78 BuildArmComputeTensor(*m_BiasesTensor, m_Data.m_Bias->GetTensorInfo());
telsoa014fcda012018-03-09 14:13:49 +000079 }
80
Matthew Benthamab8cdc12018-09-17 11:17:41 +010081 m_Data.ValidateInputsOutputs("ClFullyConnectedWorkload", 1, 1);
telsoa014fcda012018-03-09 14:13:49 +000082
Keith Davisbcd860a2021-08-05 14:20:33 +010083 arm_compute::ICLTensor& input = static_cast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
telsoa014fcda012018-03-09 14:13:49 +000084 arm_compute::ICLTensor& output = static_cast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
telsoa01c577f2c2018-08-31 09:22:23 +010085
Mike Kelly07810fc2020-11-12 10:58:48 +000086 const arm_compute::ActivationLayerInfo activationInfo = ConvertAdditionalInfoToAclActivationLayerInfo(descriptor);
87
88 arm_compute::FullyConnectedLayerInfo fc_info =
Keith Davisbcd860a2021-08-05 14:20:33 +010089 ConvertFullyConnectedDescriptorToAclFullyConnectedLayerInfo(descriptor.m_Parameters, activationInfo);
Mike Kelly07810fc2020-11-12 10:58:48 +000090
Kevin May9f6862d2021-10-22 15:42:28 +010091 {
92 ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "ClFullyConnectedWorkload_configure");
93 m_FullyConnectedLayer.configure(clCompileContext,
94 &input,
95 m_WeightsTensor.get(),
96 m_BiasesTensor.get(),
97 &output,
98 fc_info);
99 }
telsoa014fcda012018-03-09 14:13:49 +0000100
Matthew Bentham785df502018-09-21 10:29:58 +0100101 InitializeArmComputeClTensorData(*m_WeightsTensor, m_Data.m_Weight);
telsoa014fcda012018-03-09 14:13:49 +0000102
telsoa01c577f2c2018-08-31 09:22:23 +0100103 if (m_BiasesTensor)
telsoa014fcda012018-03-09 14:13:49 +0000104 {
Matthew Bentham785df502018-09-21 10:29:58 +0100105 InitializeArmComputeClTensorData(*m_BiasesTensor, m_Data.m_Bias);
telsoa014fcda012018-03-09 14:13:49 +0000106 }
telsoa01c577f2c2018-08-31 09:22:23 +0100107
108 // Force Compute Library to perform the necessary copying and reshaping, after which
109 // delete all the input tensors that will no longer be needed
110 m_FullyConnectedLayer.prepare();
111 FreeUnusedTensors();
telsoa014fcda012018-03-09 14:13:49 +0000112}
113
Matthew Benthamab8cdc12018-09-17 11:17:41 +0100114void ClFullyConnectedWorkload::Execute() const
telsoa014fcda012018-03-09 14:13:49 +0000115{
Keith Davisbcd860a2021-08-05 14:20:33 +0100116 ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClFullyConnectedWorkload_Execute", this->GetGuid());
Aron Virginas-Tara8e06ed2018-10-19 16:46:15 +0100117 RunClFunction(m_FullyConnectedLayer, CHECK_LOCATION());
telsoa01c577f2c2018-08-31 09:22:23 +0100118}
119
Matthew Benthamab8cdc12018-09-17 11:17:41 +0100120void ClFullyConnectedWorkload::FreeUnusedTensors()
telsoa01c577f2c2018-08-31 09:22:23 +0100121{
122 FreeTensorIfUnused(m_WeightsTensor);
123 FreeTensorIfUnused(m_BiasesTensor);
telsoa014fcda012018-03-09 14:13:49 +0000124}
125
surmeh013537c2c2018-05-18 16:31:43 +0100126} //namespace armnn