blob: 5a3ba658939c1d96644112b1002960b39760dfd2 [file] [log] [blame]
Teresa Charlin8398edc2020-07-20 14:23:02 +01001//
Mike Kelly7cbe7812023-07-25 17:37:33 +01002// Copyright © 2020-2023 Arm Ltd and Contributors. All rights reserved.
Teresa Charlin8398edc2020-07-20 14:23:02 +01003// SPDX-License-Identifier: MIT
4//
5
6#include "ClLogSoftmaxWorkload.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 ClLogSoftmaxWorkloadValidate(const TensorInfo& input,
18 const TensorInfo& output,
19 const LogSoftmaxDescriptor& 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 Charlin8398edc2020-07-20 14:23:02 +010025 return arm_compute::CLLogSoftmaxLayer::validate(&aclInputInfo, &aclOutputInfo, descriptor.m_Beta, aclAxis);
26}
27
Sadik Armagane9444752020-12-02 11:28:58 +000028ClLogSoftmaxWorkload::ClLogSoftmaxWorkload(const LogSoftmaxQueueDescriptor& descriptor,
29 const WorkloadInfo& info,
30 std::shared_ptr<arm_compute::MemoryManagerOnDemand>& memoryManager,
31 const arm_compute::CLCompileContext& clCompileContext)
Teresa Charlin588cbdf2022-01-19 15:55:37 +000032 : ClBaseWorkload<LogSoftmaxQueueDescriptor>(descriptor, info)
Teresa Charlin8398edc2020-07-20 14:23:02 +010033 , m_LogSoftmaxLayer(memoryManager)
34{
Keith Davisbcd860a2021-08-05 14:20:33 +010035 // Report Profiling Details
36 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClLogSoftmaxWorkload_Construct",
37 descriptor.m_Parameters,
38 info,
39 this->GetGuid());
40
Teresa Charlin8398edc2020-07-20 14:23:02 +010041 m_Data.ValidateInputsOutputs("ClLogSoftmaxWorkload", 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]);
Kevin May9f6862d2021-10-22 15:42:28 +010047
48 {
Mike Kelly7cbe7812023-07-25 17:37:33 +010049 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClLogSoftmaxWorkload_configure");
Kevin May9f6862d2021-10-22 15:42:28 +010050 m_LogSoftmaxLayer.configure(clCompileContext, &input, &output, m_Data.m_Parameters.m_Beta, aclAxis);
51 }
Teresa Charlin8398edc2020-07-20 14:23:02 +010052}
53
54void ClLogSoftmaxWorkload::Execute() const
55{
Mike Kelly7cbe7812023-07-25 17:37:33 +010056 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClLogSoftmaxWorkload_Execute");
Teresa Charlin8398edc2020-07-20 14:23:02 +010057 RunClFunction(m_LogSoftmaxLayer, CHECK_LOCATION());
58}
59
60} // namespace armnn