ArmNN
 23.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 676 of file WorkloadData.hpp.

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3855 of file WorkloadData.cpp.

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

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:198
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18