blob: 1f26b09964e1aa66a64fcbd75a792a5ee854022a [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
Teresa Charlinee1497c2023-03-30 13:56:34 +01002// Copyright © 2017,2022-2023 Arm Ltd and Contributors. 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,
Matthew Bentham67d63902022-02-08 15:03:07 +000022 const Optional<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);
Cathal Corbett4452baf2022-05-13 09:55:59 +010028 arm_compute::TensorInfo aclWeights = BuildArmComputeTensorInfo(weights);
29 aclWeights.set_are_values_constant(weights.IsConstant());
telsoa01c577f2c2018-08-31 09:22:23 +010030
31 arm_compute::TensorInfo aclBiases;
Keith Davisbcd860a2021-08-05 14:20:33 +010032 arm_compute::TensorInfo* optionalAclBiases = nullptr;
telsoa01c577f2c2018-08-31 09:22:23 +010033 if (descriptor.m_BiasEnabled)
34 {
Matthew Bentham67d63902022-02-08 15:03:07 +000035 ARMNN_ASSERT(biases.has_value());
Cathal Corbett4452baf2022-05-13 09:55:59 +010036 // Same for bias as weights. We don't currently support non const.
37 if (!biases.value().IsConstant())
38 {
39 return arm_compute::Status{arm_compute::ErrorCode::RUNTIME_ERROR,
40 "Arm NN ClFullyConnectedWorkload does not support non constant bias."};
41 }
Matthew Bentham67d63902022-02-08 15:03:07 +000042 aclBiases = BuildArmComputeTensorInfo(biases.value());
Cathal Corbett4452baf2022-05-13 09:55:59 +010043 aclBiases.set_are_values_constant(biases.value().IsConstant());
telsoa01c577f2c2018-08-31 09:22:23 +010044 optionalAclBiases = &aclBiases;
45 }
46
47 const arm_compute::FullyConnectedLayerInfo fullyConnectedLayerInfo =
Mike Kelly07810fc2020-11-12 10:58:48 +000048 ConvertFullyConnectedDescriptorToAclFullyConnectedLayerInfo(descriptor, activationDescriptor);
Teresa Charlinee1497c2023-03-30 13:56:34 +010049
telsoa01c577f2c2018-08-31 09:22:23 +010050 return arm_compute::CLFullyConnectedLayer::validate(&aclInput,
51 &aclWeights,
52 optionalAclBiases,
53 &aclOutput,
54 fullyConnectedLayerInfo);
55}
56
Sadik Armagane9444752020-12-02 11:28:58 +000057ClFullyConnectedWorkload::ClFullyConnectedWorkload(
58 const FullyConnectedQueueDescriptor& descriptor,
59 const WorkloadInfo& info,
60 std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager,
61 const arm_compute::CLCompileContext& clCompileContext)
Teresa Charlin588cbdf2022-01-19 15:55:37 +000062 : ClBaseWorkload<FullyConnectedQueueDescriptor>(descriptor, info), m_FullyConnectedLayer(memoryManager)
telsoa014fcda012018-03-09 14:13:49 +000063{
Teresa Charlinee1497c2023-03-30 13:56:34 +010064 m_Data.ValidateInputsOutputs("ClFullyConnectedWorkload", descriptor.m_Parameters.GetNumInputs(), 1);
Keith Davisbcd860a2021-08-05 14:20:33 +010065
Teresa Charlinee1497c2023-03-30 13:56:34 +010066 arm_compute::ICLTensor& input = PolymorphicDowncast<IClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
67 arm_compute::ICLTensor& output = PolymorphicDowncast<IClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
Cathal Corbett4452baf2022-05-13 09:55:59 +010068 arm_compute::ICLTensor& weights = PolymorphicDowncast<IClTensorHandle*>(m_Data.m_Inputs[1])->GetTensor();
69
Teresa Charlinee1497c2023-03-30 13:56:34 +010070 weights.info()->set_are_values_constant(info.m_InputTensorInfos[1].IsConstant());
71
Cathal Corbett4452baf2022-05-13 09:55:59 +010072 arm_compute::ICLTensor* bias = nullptr;
73 if (m_Data.m_Parameters.m_BiasEnabled)
74 {
75 bias = &PolymorphicDowncast<IClTensorHandle*>(m_Data.m_Inputs[2])->GetTensor();
Teresa Charlinee1497c2023-03-30 13:56:34 +010076 bias->info()->set_are_values_constant(info.m_InputTensorInfos[2].IsConstant());
77
78 // We do not support dynamic bias
79 ARMNN_ASSERT(info.m_InputTensorInfos[2].IsConstant() == true);
Cathal Corbett4452baf2022-05-13 09:55:59 +010080 }
telsoa01c577f2c2018-08-31 09:22:23 +010081
Mike Kelly07810fc2020-11-12 10:58:48 +000082 const arm_compute::ActivationLayerInfo activationInfo = ConvertAdditionalInfoToAclActivationLayerInfo(descriptor);
83
84 arm_compute::FullyConnectedLayerInfo fc_info =
Cathal Corbett4452baf2022-05-13 09:55:59 +010085 ConvertFullyConnectedDescriptorToAclFullyConnectedLayerInfo(descriptor.m_Parameters,
86 activationInfo);
Mike Kelly07810fc2020-11-12 10:58:48 +000087
Kevin May9f6862d2021-10-22 15:42:28 +010088 {
89 ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "ClFullyConnectedWorkload_configure");
90 m_FullyConnectedLayer.configure(clCompileContext,
91 &input,
Cathal Corbett4452baf2022-05-13 09:55:59 +010092 &weights,
93 bias,
Kevin May9f6862d2021-10-22 15:42:28 +010094 &output,
95 fc_info);
96 }
Teresa Charlinee1497c2023-03-30 13:56:34 +010097
98 // Add details for profiling output
99 WorkloadInfo detailsInfo;
100
101 detailsInfo.m_InputTensorInfos = info.m_InputTensorInfos;
102 detailsInfo.m_OutputTensorInfos = info.m_OutputTensorInfos;
103 detailsInfo.m_WeightsTensorInfo = armnn::Optional<armnn::TensorInfo>(info.m_InputTensorInfos[1]);
104 if (descriptor.m_Parameters.m_BiasEnabled)
105 {
106 detailsInfo.m_BiasTensorInfo = armnn::Optional<armnn::TensorInfo>(info.m_InputTensorInfos[2]);
107 }
108
109 // Report Profiling Details
110 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClFullyConnectedWorkload_Construct",
111 descriptor.m_Parameters,
112 detailsInfo,
113 this->GetGuid());
telsoa014fcda012018-03-09 14:13:49 +0000114}
115
Matthew Benthamab8cdc12018-09-17 11:17:41 +0100116void ClFullyConnectedWorkload::Execute() const
telsoa014fcda012018-03-09 14:13:49 +0000117{
Keith Davisbcd860a2021-08-05 14:20:33 +0100118 ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClFullyConnectedWorkload_Execute", this->GetGuid());
Aron Virginas-Tara8e06ed2018-10-19 16:46:15 +0100119 RunClFunction(m_FullyConnectedLayer, CHECK_LOCATION());
telsoa01c577f2c2018-08-31 09:22:23 +0100120}
121
surmeh013537c2c2018-05-18 16:31:43 +0100122} //namespace armnn