ArmNN
 25.11
Loading...
Searching...
No Matches
ClDepthToSpaceWorkload Class Reference

#include <ClDepthToSpaceWorkload.hpp>

Inheritance diagram for ClDepthToSpaceWorkload:
[legend]
Collaboration diagram for ClDepthToSpaceWorkload:
[legend]

Public Member Functions

 ClDepthToSpaceWorkload (const DepthToSpaceQueueDescriptor &descriptor, const WorkloadInfo &info, const arm_compute::CLCompileContext &clCompileContext)
void Execute () const override
Public Member Functions inherited from ClBaseWorkload< DepthToSpaceQueueDescriptor >
 ClBaseWorkload (const DepthToSpaceQueueDescriptor &descriptor, const WorkloadInfo &info)
void ReplaceInputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
void ReplaceOutputTensorHandle (ITensorHandle *tensorHandle, unsigned int slot) override
Public Member Functions inherited from BaseWorkload< DepthToSpaceQueueDescriptor >
 BaseWorkload (const DepthToSpaceQueueDescriptor &descriptor, const WorkloadInfo &info)
virtual const std::string & GetName () const override
void PostAllocationConfigure () override
const DepthToSpaceQueueDescriptorGetData () const
arm::pipe::ProfilingGuid GetGuid () const final
virtual bool SupportsTensorHandleReplacement () const override
Public Member Functions inherited from IWorkload
virtual ~IWorkload ()
virtual void RegisterDebugCallback (const DebugCallbackFunction &)
virtual armnn::Optional< armnn::MemoryRequirementsGetMemoryRequirements ()

Additional Inherited Members

Protected Member Functions inherited from ClBaseWorkload< DepthToSpaceQueueDescriptor >
virtual void Reconfigure ()
Protected Attributes inherited from BaseWorkload< DepthToSpaceQueueDescriptor >
DepthToSpaceQueueDescriptor m_Data
const arm::pipe::ProfilingGuid m_Guid
const std::string m_Name

Detailed Description

Definition at line 21 of file ClDepthToSpaceWorkload.hpp.

Constructor & Destructor Documentation

◆ ClDepthToSpaceWorkload()

ClDepthToSpaceWorkload ( const DepthToSpaceQueueDescriptor & descriptor,
const WorkloadInfo & info,
const arm_compute::CLCompileContext & clCompileContext )

Definition at line 39 of file ClDepthToSpaceWorkload.cpp.

42 : ClBaseWorkload<DepthToSpaceQueueDescriptor>(descriptor, info)
43{
44 // Report Profiling Details
45 ARMNN_REPORT_PROFILING_WORKLOAD_DESC("ClDepthToSpaceWorkload_Construct",
46 descriptor.m_Parameters,
47 info,
48 this->GetGuid());
49
50 m_Data.ValidateInputsOutputs("ClDepthToSpaceWorkload", 1, 1);
51
52 arm_compute::DataLayout aclDataLayout = ConvertDataLayout(m_Data.m_Parameters.m_DataLayout);
53
54 arm_compute::ICLTensor& input =
55 PolymorphicPointerDowncast<IClTensorHandle>(m_Data.m_Inputs[0])->GetTensor();
56 input.info()->set_data_layout(aclDataLayout);
57
58 int32_t blockSize = armnn::numeric_cast<int32_t>(descriptor.m_Parameters.m_BlockSize);
59
60 arm_compute::ICLTensor& output =
61 PolymorphicPointerDowncast<IClTensorHandle>(m_Data.m_Outputs[0])->GetTensor();
62 output.info()->set_data_layout(aclDataLayout);
63
64 {
65 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClDepthToSpaceWorkload_configure");
66 m_Layer.configure(clCompileContext, &input, &output, blockSize);
67 }
68}
#define ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID(label)
Creates a profiling event that uses GetGuid() and GetName() from the calling class.
#define ARMNN_REPORT_PROFILING_WORKLOAD_DESC(name, desc, infos, guid)
std::enable_if_t< std::is_unsigned< Source >::value &&std::is_unsigned< Dest >::value, Dest > numeric_cast(Source source)

References ARMNN_REPORT_PROFILING_WORKLOAD_DESC, ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID, ClBaseWorkload< DepthToSpaceQueueDescriptor >::ClBaseWorkload(), armnn::info, SpaceToDepthDescriptor::m_BlockSize, BaseWorkload< DepthToSpaceQueueDescriptor >::m_Data, QueueDescriptorWithParameters< LayerDescriptor >::m_Parameters, armnn::numeric_cast(), and armnn::PolymorphicPointerDowncast().

Member Function Documentation

◆ Execute()

void Execute ( ) const
overridevirtual

Implements IWorkload.

Definition at line 70 of file ClDepthToSpaceWorkload.cpp.

71{
72 ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID("ClDepthToSpaceWorkload_Execute");
73 RunClFunction(m_Layer, CHECK_LOCATION());
74}
#define CHECK_LOCATION()
void RunClFunction(arm_compute::IFunction &function, const CheckLocation &location)

References ARMNN_SCOPED_PROFILING_EVENT_CL_NAME_GUID, CHECK_LOCATION, and armnn::RunClFunction().


The documentation for this class was generated from the following files: