blob: 0b7b10d7b0893aa98ed7b216585c542a8a93f3e4 [file] [log] [blame]
Teresa Charlinc1f6b092020-05-11 16:10:38 +01001//
2// Copyright © 2020 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#include "ClSoftmaxWorkload.hpp"
7#include "ClWorkloadUtils.hpp"
8
9#include <aclCommon/ArmComputeTensorUtils.hpp>
10#include <aclCommon/ArmComputeUtils.hpp>
11
12#include <cl/ClTensorHandle.hpp>
13
14namespace armnn
15{
16
17arm_compute::Status ClSoftmaxWorkloadValidate(const TensorInfo& input,
18 const TensorInfo& output,
19 const SoftmaxDescriptor& descriptor)
20{
21 const arm_compute::TensorInfo aclInputInfo = armcomputetensorutils::BuildArmComputeTensorInfo(input);
22 const arm_compute::TensorInfo aclOutputInfo = armcomputetensorutils::BuildArmComputeTensorInfo(output);
23
Teresa Charline3866762020-08-28 15:13:05 +010024 int aclAxis = ComputeAclAxis(descriptor.m_Axis, input);
Teresa Charlinc1f6b092020-05-11 16:10:38 +010025 return arm_compute::CLSoftmaxLayer::validate(&aclInputInfo, &aclOutputInfo, descriptor.m_Beta, aclAxis);
26}
27
Sadik Armagane9444752020-12-02 11:28:58 +000028ClSoftmaxWorkload::ClSoftmaxWorkload(const SoftmaxQueueDescriptor& descriptor,
29 const WorkloadInfo& info,
30 std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager,
31 const arm_compute::CLCompileContext& clCompileContext)
Teresa Charlinc1f6b092020-05-11 16:10:38 +010032 : BaseWorkload<SoftmaxQueueDescriptor>(descriptor, info)
33 , m_SoftmaxLayer(memoryManager)
34{
Keith Davisbcd860a2021-08-05 14:20:33 +010035 // Report Profiling Details
36 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClSoftmaxWorkload_Construct",
37 descriptor.m_Parameters,
38 info,
39 this->GetGuid());
40
Teresa Charlinc1f6b092020-05-11 16:10:38 +010041 m_Data.ValidateInputsOutputs("ClSoftmaxWorkload", 1, 1);
42
43 arm_compute::ICLTensor& input = static_cast<ClTensorHandle*>(m_Data.m_Inputs[0])->GetTensor();
44 arm_compute::ICLTensor& output = static_cast<ClTensorHandle*>(m_Data.m_Outputs[0])->GetTensor();
45
Teresa Charline3866762020-08-28 15:13:05 +010046 int aclAxis = ComputeAclAxis(m_Data.m_Parameters.m_Axis, info.m_InputTensorInfos[0]);
Sadik Armagane9444752020-12-02 11:28:58 +000047 m_SoftmaxLayer.configure(clCompileContext, &input, &output, m_Data.m_Parameters.m_Beta, aclAxis);
Teresa Charlinc1f6b092020-05-11 16:10:38 +010048}
49
50void ClSoftmaxWorkload::Execute() const
51{
Keith Davisbcd860a2021-08-05 14:20:33 +010052 ARMNN_SCOPED_PROFILING_EVENT_CL_GUID("ClSoftmaxWorkload_Execute", this->GetGuid());
Teresa Charlinc1f6b092020-05-11 16:10:38 +010053 RunClFunction(m_SoftmaxLayer, CHECK_LOCATION());
54}
55
56} // namespace armnn