ArmNN
 24.08
LogicalBinaryQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

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

Public Member Functions

void Validate (const WorkloadInfo &workloadInfo) const
 
- Public Member Functions inherited from QueueDescriptorWithParameters< LogicalBinaryDescriptor >
virtual ~QueueDescriptorWithParameters ()=default
 
- Public Member Functions inherited from QueueDescriptor
virtual ~QueueDescriptor ()=default
 
void ValidateTensorNumDimensions (const TensorInfo &tensor, std::string const &descName, unsigned int numDimensions, std::string const &tensorName) const
 
void ValidateTensorNumDimNumElem (const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
 
void ValidateInputsOutputs (const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
 
template<typename T >
const T * GetAdditionalInformation () const
 

Additional Inherited Members

- Public Attributes inherited from QueueDescriptorWithParameters< LogicalBinaryDescriptor >
LogicalBinaryDescriptor m_Parameters
 
- Public Attributes inherited from QueueDescriptor
std::vector< ITensorHandle * > m_Inputs
 
std::vector< ITensorHandle * > m_Outputs
 
void * m_AdditionalInfoObject
 
bool m_AllowExpandedDims = false
 
- Protected Member Functions inherited from QueueDescriptorWithParameters< LogicalBinaryDescriptor >
 QueueDescriptorWithParameters ()=default
 
 QueueDescriptorWithParameters (QueueDescriptorWithParameters const &)=default
 
QueueDescriptorWithParametersoperator= (QueueDescriptorWithParameters const &)=default
 
- Protected Member Functions inherited from QueueDescriptor
 QueueDescriptor ()
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 

Detailed Description

Definition at line 681 of file WorkloadData.hpp.

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3865 of file WorkloadData.cpp.

3866 {
3867  const std::string descriptorName{"LogicalBinaryQueueDescriptor"};
3868 
3869  ValidateNumInputs(workloadInfo, descriptorName, 2);
3870  ValidateNumOutputs(workloadInfo, descriptorName, 1);
3871 
3872  const TensorInfo& inputTensorInfo0 = workloadInfo.m_InputTensorInfos[0];
3873  const TensorInfo& inputTensorInfo1 = workloadInfo.m_InputTensorInfos[1];
3874  const TensorInfo& outputTensorInfo = workloadInfo.m_OutputTensorInfos[0];
3875 
3876  ValidateBroadcastTensorShapesMatch(inputTensorInfo0,
3877  inputTensorInfo1,
3878  outputTensorInfo,
3879  descriptorName,
3880  "input_0",
3881  "input_1");
3882 
3883  if (inputTensorInfo0.GetDataType() != DataType::Boolean)
3884  {
3885  throw InvalidArgumentException(descriptorName + ": Input tensor 0 type must be Boolean.");
3886  }
3887 
3888  if (inputTensorInfo1.GetDataType() != DataType::Boolean)
3889  {
3890  throw InvalidArgumentException(descriptorName + ": Input tensor 1 type must be Boolean.");
3891  }
3892 
3893  if (outputTensorInfo.GetDataType() != DataType::Boolean)
3894  {
3895  throw InvalidArgumentException(descriptorName + ": Output tensor type must be Boolean.");
3896  }
3897 }

References armnn::Boolean, TensorInfo::GetDataType(), WorkloadInfo::m_InputTensorInfos, and WorkloadInfo::m_OutputTensorInfos.


The documentation for this struct was generated from the following files:
armnn::DataType::Boolean
@ Boolean
armnn::TensorInfo
Definition: Tensor.hpp:152
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::TensorInfo::GetDataType
DataType GetDataType() const
Definition: Tensor.hpp:200
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18