ArmNN
 23.05
UnidirectionalSequenceLstmQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

Inheritance diagram for UnidirectionalSequenceLstmQueueDescriptor:
QueueDescriptorWithParameters< LstmDescriptor > QueueDescriptor

Public Member Functions

 UnidirectionalSequenceLstmQueueDescriptor ()
 
void Validate (const WorkloadInfo &workloadInfo) const
 
- Public Member Functions inherited from QueueDescriptorWithParameters< LstmDescriptor >
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
 

Public Attributes

const ConstTensorHandlem_InputToInputWeights
 
const ConstTensorHandlem_InputToForgetWeights
 
const ConstTensorHandlem_InputToCellWeights
 
const ConstTensorHandlem_InputToOutputWeights
 
const ConstTensorHandlem_RecurrentToInputWeights
 
const ConstTensorHandlem_RecurrentToForgetWeights
 
const ConstTensorHandlem_RecurrentToCellWeights
 
const ConstTensorHandlem_RecurrentToOutputWeights
 
const ConstTensorHandlem_CellToInputWeights
 
const ConstTensorHandlem_CellToForgetWeights
 
const ConstTensorHandlem_CellToOutputWeights
 
const ConstTensorHandlem_InputGateBias
 
const ConstTensorHandlem_ForgetGateBias
 
const ConstTensorHandlem_CellBias
 
const ConstTensorHandlem_OutputGateBias
 
const ConstTensorHandlem_ProjectionWeights
 
const ConstTensorHandlem_ProjectionBias
 
const ConstTensorHandlem_InputLayerNormWeights
 
const ConstTensorHandlem_ForgetLayerNormWeights
 
const ConstTensorHandlem_CellLayerNormWeights
 
const ConstTensorHandlem_OutputLayerNormWeights
 
- Public Attributes inherited from QueueDescriptorWithParameters< LstmDescriptor >
LstmDescriptor m_Parameters
 
- Public Attributes inherited from QueueDescriptor
std::vector< ITensorHandle * > m_Inputs
 
std::vector< ITensorHandle * > m_Outputs
 
void * m_AdditionalInfoObject
 
bool m_AllowExpandedDims = false
 

Additional Inherited Members

- Protected Member Functions inherited from QueueDescriptorWithParameters< LstmDescriptor >
 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 691 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ UnidirectionalSequenceLstmQueueDescriptor()

Definition at line 693 of file WorkloadData.hpp.

694  : m_InputToInputWeights(nullptr)
695  , m_InputToForgetWeights(nullptr)
696  , m_InputToCellWeights(nullptr)
697  , m_InputToOutputWeights(nullptr)
698  , m_RecurrentToInputWeights(nullptr)
699  , m_RecurrentToForgetWeights(nullptr)
700  , m_RecurrentToCellWeights(nullptr)
701  , m_RecurrentToOutputWeights(nullptr)
702  , m_CellToInputWeights(nullptr)
703  , m_CellToForgetWeights(nullptr)
704  , m_CellToOutputWeights(nullptr)
705  , m_InputGateBias(nullptr)
706  , m_ForgetGateBias(nullptr)
707  , m_CellBias(nullptr)
708  , m_OutputGateBias(nullptr)
709  , m_ProjectionWeights(nullptr)
710  , m_ProjectionBias(nullptr)
711  , m_InputLayerNormWeights(nullptr)
712  , m_ForgetLayerNormWeights(nullptr)
713  , m_CellLayerNormWeights(nullptr)
714  , m_OutputLayerNormWeights(nullptr)
715  {
716  }

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3826 of file WorkloadData.cpp.

3827 {
3828  // Modified from LstmQueueDescriptor::Validate to support UnidirectionalSequenceLstm
3829 
3830  const std::string descriptorName{"UnidirectionalSequenceLstmQueueDescriptor"};
3831 
3832  // check dimensions of all inputs and outputs
3833  if (workloadInfo.m_InputTensorInfos.size() != 3)
3834  {
3835  throw InvalidArgumentException(descriptorName + ": Invalid number of inputs.");
3836  }
3837  if (workloadInfo.m_OutputTensorInfos.size() != 3)
3838  {
3839  throw InvalidArgumentException(descriptorName + ": Invalid number of outputs.");
3840  }
3841 
3842  std::vector<DataType> supportedTypes =
3843  {
3846  };
3847 
3848  // check for supported type of one input and match them with all the other input and output
3849  ValidateDataTypes(workloadInfo.m_InputTensorInfos[0], supportedTypes, descriptorName);
3850 
3851  // Making sure clipping parameters have valid values.
3852  // == 0 means no clipping
3853  // > 0 means clipping
3854  if (m_Parameters.m_ClippingThresCell < 0.0f)
3855  {
3856  throw InvalidArgumentException(descriptorName + ": negative cell clipping threshold is invalid");
3857  }
3858  if (m_Parameters.m_ClippingThresProj < 0.0f)
3859  {
3860  throw InvalidArgumentException(descriptorName + ": negative projection clipping threshold is invalid");
3861  }
3862 
3863  unsigned int batchIndx = 0;
3864  unsigned int inputIndx = 1;
3865  uint32_t timeStep = 1;
3866  unsigned int timeIndx = 1;
3867  inputIndx = 2;
3869  {
3870  batchIndx = 1;
3871  timeIndx = 0;
3872 
3873  }
3874  timeStep = workloadInfo.m_InputTensorInfos[0].GetShape()[timeIndx];
3875 
3876  // Inferring batch size, number of outputs and number of cells from the inputs.
3877  const uint32_t n_input = workloadInfo.m_InputTensorInfos[0].GetShape()[inputIndx];
3878  const uint32_t n_batch = workloadInfo.m_InputTensorInfos[0].GetShape()[batchIndx];
3879  ValidatePointer(m_InputToOutputWeights, "Null pointer check", "InputToOutputWeights");
3880  const uint32_t n_cell = m_InputToOutputWeights->GetShape()[0];
3881  ValidatePointer(m_RecurrentToOutputWeights, "Null pointer check", "RecurrentToOutputWeights");
3882  const uint32_t n_output = m_RecurrentToOutputWeights->GetShape()[1];
3883 
3884  // input tensor
3885  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[0], 3, (timeStep * n_batch * n_input),
3886  descriptorName + " input_0");
3887  // outputStateInTensor
3888  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[1], 2, (n_batch * n_output),
3889  descriptorName + " input_1");
3890  // outputStateInTensor
3891  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[2], 2, (n_batch * n_cell),
3892  descriptorName + " input_2");
3893 
3894  // outputTensor
3895  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[2], 3, (timeStep * n_batch * n_output),
3896  descriptorName + " output_0");
3897 
3898  // check that dimensions of inputs/outputs and QueueDescriptor data match with each other
3899  if ( m_InputToInputWeights )
3900  {
3902  (n_cell * n_input), "InputLayerNormWeights");
3903  }
3904 
3905  ValidatePointer(m_InputToForgetWeights, "Null pointer check", "InputToForgetWeights");
3907  (n_cell * n_input), "InputToForgetWeights");
3908 
3909  ValidatePointer(m_InputToCellWeights, "Null pointer check", "InputToCellWeights");
3911  (n_cell * n_input), "InputToCellWeights");
3912 
3914  {
3916  (n_cell * n_output), "RecurrentToInputWeights");
3917  }
3918 
3919  ValidatePointer(m_RecurrentToForgetWeights, "Null pointer check", "RecurrentToForgetWeights");
3921  (n_cell * n_output), "RecurrentToForgetWeights");
3922 
3923  ValidatePointer(m_RecurrentToCellWeights, "Null pointer check", "RecurrentToCellWeights");
3925  (n_cell * n_output), "RecurrentToCellWeights");
3926 
3927  // Make sure the input-gate's parameters are either both present (regular
3928  // LSTM) or not at all (CIFG-LSTM). And CifgEnable is set accordingly.
3929  bool cifg_weights_all_or_none = ((m_InputToInputWeights && m_RecurrentToInputWeights &&
3933  if (!cifg_weights_all_or_none)
3934  {
3935  throw InvalidArgumentException(descriptorName + ": Input-Gate's parameters InputToInputWeights and "
3936  "RecurrentToInputWeights must either both be present (regular LSTM) "
3937  "or both not present (CIFG-LSTM). In addition CifgEnable must be set "
3938  "accordingly.");
3939  }
3940 
3941  if ( m_CellToInputWeights )
3942  {
3944  n_cell, "CellToInputWeights");
3945  }
3946  if ( m_CellToForgetWeights )
3947  {
3949  n_cell, "CellToForgetWeights");
3950  }
3951  if ( m_CellToOutputWeights )
3952  {
3954  n_cell, "CellToOutputWeights");
3955  }
3956 
3957  // Making sure the peephole weights are there all or none. And PeepholeEnable is set accordingly.
3958  bool peephole_weights_all_or_none =
3963  if (!peephole_weights_all_or_none)
3964  {
3965  throw InvalidArgumentException(descriptorName + ": Invalid combination of peephole parameters.");
3966  }
3967 
3968  // Make sure the input gate bias is present only when not a CIFG-LSTM.
3970  {
3971  if (m_InputGateBias)
3972  {
3973  throw InvalidArgumentException(descriptorName + ": InputGateBias is present and CIFG-LSTM is enabled.");
3974  }
3975  }
3976  else
3977  {
3978  if (!m_InputGateBias)
3979  {
3980  throw InvalidArgumentException(descriptorName + ": If CIFG-LSTM is disabled InputGateBias "
3981  "must be present.");
3982  }
3984  n_cell, "InputGateBias");
3985  }
3986 
3987  ValidatePointer(m_ForgetGateBias, "Null pointer check", "ForgetGateBias");
3988  ValidateTensorNumDimNumElem(m_ForgetGateBias->GetTensorInfo(), 1, n_cell, "ForgetGateBias");
3989 
3990  ValidatePointer(m_CellBias, "Null pointer check", "CellBias");
3991  ValidateTensorNumDimNumElem(m_CellBias->GetTensorInfo(), 1, n_cell, "CellBias");
3992 
3993  ValidatePointer(m_OutputGateBias, "Null pointer check", "OutputGateBias");
3994  ValidateTensorNumDimNumElem(m_OutputGateBias->GetTensorInfo(), 1, n_cell, "OutputGateBias");
3995 
3996  if (m_ProjectionWeights)
3997  {
3999  (n_cell * n_output), "ProjectionWeights");
4000  }
4001  if (m_ProjectionBias)
4002  {
4003  ValidateTensorNumDimNumElem(m_ProjectionBias->GetTensorInfo(), 1, n_output, "ProjectionBias");
4004  }
4005 
4006  // Making sure the projection tensors are consistent:
4007  // 1) If projection weight is not present, then projection bias should not be
4008  // present.
4009  // 2) If projection weight is present, then projection bias is optional.
4010  bool projecton_tensors_consistent = ((!m_ProjectionWeights && !m_ProjectionBias &&
4016  if (!projecton_tensors_consistent)
4017  {
4018  throw InvalidArgumentException(descriptorName + ": Projection tensors are inconsistent.");
4019  }
4020 
4021  // The four layer normalization weights either all have values or none of them have values. Additionally, if
4022  // CIFG is used, input layer normalization weights tensor is omitted and the other layer normalization weights
4023  // either all have values or none of them have values. Layer normalization is used when the values of all the
4024  // layer normalization weights are present
4026  {
4027  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(), 1, n_cell, "InputLayerNormWeights");
4028  }
4030  {
4031  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
4032  }
4034  {
4035  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
4036  }
4038  {
4039  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
4040  }
4041 
4043  {
4045  {
4047  {
4048  throw InvalidArgumentException(descriptorName + ": Layer normalisation is enabled and CIFG-LSTM is "
4049  "disabled but InputLayerNormWeights are not present");
4050  }
4052  1, n_cell, "InputLayerNormWeights");
4053  }
4054  else if (m_InputLayerNormWeights)
4055  {
4056  throw InvalidArgumentException(descriptorName + ":InputLayerNormWeights are present while CIFG is "
4057  "enabled");
4058  }
4059 
4060  ValidatePointer(m_ForgetLayerNormWeights, "Null pointer check layer normalisation enabled",
4061  "ForgetLayerNormWeights");
4062  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
4063 
4064  ValidatePointer(m_OutputLayerNormWeights, "Null pointer check layer normalisation enabled",
4065  "OutputLayerNormWeights");
4066  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
4067 
4068  ValidatePointer(m_CellLayerNormWeights, "Null pointer check layer normalisation enabled",
4069  "CellLayerNormWeights");
4070  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
4071  }
4073  {
4074  throw InvalidArgumentException(descriptorName + ": Layer normalisation is disabled but one or more layer "
4075  "normalisation weights are present.");
4076  }
4077 }

References armnn::Float32, ConstTensorHandle::GetShape(), ConstTensorHandle::GetTensorInfo(), UnidirectionalSequenceLstmQueueDescriptor::m_CellBias, UnidirectionalSequenceLstmQueueDescriptor::m_CellLayerNormWeights, UnidirectionalSequenceLstmQueueDescriptor::m_CellToForgetWeights, UnidirectionalSequenceLstmQueueDescriptor::m_CellToInputWeights, UnidirectionalSequenceLstmQueueDescriptor::m_CellToOutputWeights, LstmDescriptor::m_CifgEnabled, LstmDescriptor::m_ClippingThresCell, LstmDescriptor::m_ClippingThresProj, UnidirectionalSequenceLstmQueueDescriptor::m_ForgetGateBias, UnidirectionalSequenceLstmQueueDescriptor::m_ForgetLayerNormWeights, UnidirectionalSequenceLstmQueueDescriptor::m_InputGateBias, UnidirectionalSequenceLstmQueueDescriptor::m_InputLayerNormWeights, WorkloadInfo::m_InputTensorInfos, UnidirectionalSequenceLstmQueueDescriptor::m_InputToCellWeights, UnidirectionalSequenceLstmQueueDescriptor::m_InputToForgetWeights, UnidirectionalSequenceLstmQueueDescriptor::m_InputToInputWeights, UnidirectionalSequenceLstmQueueDescriptor::m_InputToOutputWeights, LstmDescriptor::m_LayerNormEnabled, UnidirectionalSequenceLstmQueueDescriptor::m_OutputGateBias, UnidirectionalSequenceLstmQueueDescriptor::m_OutputLayerNormWeights, WorkloadInfo::m_OutputTensorInfos, QueueDescriptorWithParameters< LstmDescriptor >::m_Parameters, LstmDescriptor::m_PeepholeEnabled, UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionBias, LstmDescriptor::m_ProjectionEnabled, UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionWeights, UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToCellWeights, UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToForgetWeights, UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToInputWeights, UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToOutputWeights, LstmDescriptor::m_TimeMajor, armnn::QAsymmS8, and QueueDescriptor::ValidateTensorNumDimNumElem().

Member Data Documentation

◆ m_CellBias

◆ m_CellLayerNormWeights

◆ m_CellToForgetWeights

◆ m_CellToInputWeights

◆ m_CellToOutputWeights

◆ m_ForgetGateBias

◆ m_ForgetLayerNormWeights

◆ m_InputGateBias

◆ m_InputLayerNormWeights

◆ m_InputToCellWeights

◆ m_InputToForgetWeights

◆ m_InputToInputWeights

◆ m_InputToOutputWeights

◆ m_OutputGateBias

◆ m_OutputLayerNormWeights

◆ m_ProjectionBias

◆ m_ProjectionWeights

◆ m_RecurrentToCellWeights

◆ m_RecurrentToForgetWeights

◆ m_RecurrentToInputWeights

◆ m_RecurrentToOutputWeights


The documentation for this struct was generated from the following files:
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:723
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:738
armnn::LstmDescriptor::m_TimeMajor
bool m_TimeMajor
Enable/disable time major.
Definition: Descriptors.hpp:1121
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:725
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:729
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:728
armnn::QueueDescriptor::ValidateTensorNumDimNumElem
void ValidateTensorNumDimNumElem(const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
Definition: WorkloadData.cpp:461
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ForgetGateBias
const ConstTensorHandle * m_ForgetGateBias
Definition: WorkloadData.hpp:730
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:727
armnn::LstmDescriptor::m_CifgEnabled
bool m_CifgEnabled
Enable/disable cifg (coupled input & forget gate).
Definition: Descriptors.hpp:1113
armnn::LstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1119
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToInputWeights
const ConstTensorHandle * m_InputToInputWeights
Definition: WorkloadData.hpp:718
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellBias
const ConstTensorHandle * m_CellBias
Definition: WorkloadData.hpp:731
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:719
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:732
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:737
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::ConstTensorHandle::GetShape
TensorShape GetShape() const override
Get the number of elements for each dimension ordered from slowest iterating dimension to fastest ite...
Definition: TensorHandle.hpp:56
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:726
armnn::DataType::Float32
@ Float32
armnn::LstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1115
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:733
armnn::ConstTensorHandle::GetTensorInfo
const TensorInfo & GetTensorInfo() const
Definition: TensorHandle.hpp:40
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:736
armnn::LstmDescriptor::m_ClippingThresCell
float m_ClippingThresCell
Clipping threshold value for the cell state.
Definition: Descriptors.hpp:1109
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:722
armnn::QueueDescriptorWithParameters< LstmDescriptor >::m_Parameters
LstmDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionBias
const ConstTensorHandle * m_ProjectionBias
Definition: WorkloadData.hpp:734
armnn::LstmDescriptor::m_ProjectionEnabled
bool m_ProjectionEnabled
Enable/disable the projection layer.
Definition: Descriptors.hpp:1117
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:735
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToCellWeights
const ConstTensorHandle * m_InputToCellWeights
Definition: WorkloadData.hpp:720
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:724
armnn::LstmDescriptor::m_ClippingThresProj
float m_ClippingThresProj
Clipping threshold value for the projection.
Definition: Descriptors.hpp:1111
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:721
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18