ArmNN
 24.05
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 3863 of file WorkloadData.cpp.

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

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