ArmNN
 23.11
UnidirectionalSequenceLstmQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

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

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 696 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ UnidirectionalSequenceLstmQueueDescriptor()

Definition at line 698 of file WorkloadData.hpp.

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

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3919 of file WorkloadData.cpp.

3920 {
3921  // Modified from LstmQueueDescriptor::Validate to support UnidirectionalSequenceLstm
3922 
3923  const std::string descriptorName{"UnidirectionalSequenceLstmQueueDescriptor"};
3924 
3925  // check dimensions of all inputs and outputs
3926  if (workloadInfo.m_InputTensorInfos.size() != 3)
3927  {
3928  throw InvalidArgumentException(descriptorName + ": Invalid number of inputs.");
3929  }
3930  if (workloadInfo.m_OutputTensorInfos.size() != 3)
3931  {
3932  throw InvalidArgumentException(descriptorName + ": Invalid number of outputs.");
3933  }
3934 
3935  std::vector<DataType> supportedTypes =
3936  {
3939  };
3940 
3941  // check for supported type of one input and match them with all the other input and output
3942  ValidateDataTypes(workloadInfo.m_InputTensorInfos[0], supportedTypes, descriptorName);
3943 
3944  // Making sure clipping parameters have valid values.
3945  // == 0 means no clipping
3946  // > 0 means clipping
3947  if (m_Parameters.m_ClippingThresCell < 0.0f)
3948  {
3949  throw InvalidArgumentException(descriptorName + ": negative cell clipping threshold is invalid");
3950  }
3951  if (m_Parameters.m_ClippingThresProj < 0.0f)
3952  {
3953  throw InvalidArgumentException(descriptorName + ": negative projection clipping threshold is invalid");
3954  }
3955 
3956  unsigned int batchIndx = 0;
3957  unsigned int inputIndx = 1;
3958  uint32_t timeStep = 1;
3959  unsigned int timeIndx = 1;
3960  inputIndx = 2;
3962  {
3963  batchIndx = 1;
3964  timeIndx = 0;
3965 
3966  }
3967  timeStep = workloadInfo.m_InputTensorInfos[0].GetShape()[timeIndx];
3968 
3969  // Inferring batch size, number of outputs and number of cells from the inputs.
3970  const uint32_t n_input = workloadInfo.m_InputTensorInfos[0].GetShape()[inputIndx];
3971  const uint32_t n_batch = workloadInfo.m_InputTensorInfos[0].GetShape()[batchIndx];
3972  ValidatePointer(m_InputToOutputWeights, "Null pointer check", "InputToOutputWeights");
3973  const uint32_t n_cell = m_InputToOutputWeights->GetShape()[0];
3974  ValidatePointer(m_RecurrentToOutputWeights, "Null pointer check", "RecurrentToOutputWeights");
3975  const uint32_t n_output = m_RecurrentToOutputWeights->GetShape()[1];
3976 
3977  // input tensor
3978  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[0], 3, (timeStep * n_batch * n_input),
3979  descriptorName + " input_0");
3980  // outputStateInTensor
3981  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[1], 2, (n_batch * n_output),
3982  descriptorName + " input_1");
3983  // outputStateInTensor
3984  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[2], 2, (n_batch * n_cell),
3985  descriptorName + " input_2");
3986 
3987  // outputTensor
3988  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[2], 3, (timeStep * n_batch * n_output),
3989  descriptorName + " output_0");
3990 
3991  // check that dimensions of inputs/outputs and QueueDescriptor data match with each other
3992  if ( m_InputToInputWeights )
3993  {
3995  (n_cell * n_input), "InputLayerNormWeights");
3996  }
3997 
3998  ValidatePointer(m_InputToForgetWeights, "Null pointer check", "InputToForgetWeights");
4000  (n_cell * n_input), "InputToForgetWeights");
4001 
4002  ValidatePointer(m_InputToCellWeights, "Null pointer check", "InputToCellWeights");
4004  (n_cell * n_input), "InputToCellWeights");
4005 
4007  {
4009  (n_cell * n_output), "RecurrentToInputWeights");
4010  }
4011 
4012  ValidatePointer(m_RecurrentToForgetWeights, "Null pointer check", "RecurrentToForgetWeights");
4014  (n_cell * n_output), "RecurrentToForgetWeights");
4015 
4016  ValidatePointer(m_RecurrentToCellWeights, "Null pointer check", "RecurrentToCellWeights");
4018  (n_cell * n_output), "RecurrentToCellWeights");
4019 
4020  // Make sure the input-gate's parameters are either both present (regular
4021  // LSTM) or not at all (CIFG-LSTM). And CifgEnable is set accordingly.
4022  bool cifg_weights_all_or_none = ((m_InputToInputWeights && m_RecurrentToInputWeights &&
4026  if (!cifg_weights_all_or_none)
4027  {
4028  throw InvalidArgumentException(descriptorName + ": Input-Gate's parameters InputToInputWeights and "
4029  "RecurrentToInputWeights must either both be present (regular LSTM) "
4030  "or both not present (CIFG-LSTM). In addition CifgEnable must be set "
4031  "accordingly.");
4032  }
4033 
4034  if ( m_CellToInputWeights )
4035  {
4037  n_cell, "CellToInputWeights");
4038  }
4039  if ( m_CellToForgetWeights )
4040  {
4042  n_cell, "CellToForgetWeights");
4043  }
4044  if ( m_CellToOutputWeights )
4045  {
4047  n_cell, "CellToOutputWeights");
4048  }
4049 
4050  // Making sure the peephole weights are there all or none. And PeepholeEnable is set accordingly.
4051  bool peephole_weights_all_or_none =
4056  if (!peephole_weights_all_or_none)
4057  {
4058  throw InvalidArgumentException(descriptorName + ": Invalid combination of peephole parameters.");
4059  }
4060 
4061  // Make sure the input gate bias is present only when not a CIFG-LSTM.
4063  {
4064  if (m_InputGateBias)
4065  {
4066  throw InvalidArgumentException(descriptorName + ": InputGateBias is present and CIFG-LSTM is enabled.");
4067  }
4068  }
4069  else
4070  {
4071  if (!m_InputGateBias)
4072  {
4073  throw InvalidArgumentException(descriptorName + ": If CIFG-LSTM is disabled InputGateBias "
4074  "must be present.");
4075  }
4077  n_cell, "InputGateBias");
4078  }
4079 
4080  ValidatePointer(m_ForgetGateBias, "Null pointer check", "ForgetGateBias");
4081  ValidateTensorNumDimNumElem(m_ForgetGateBias->GetTensorInfo(), 1, n_cell, "ForgetGateBias");
4082 
4083  ValidatePointer(m_CellBias, "Null pointer check", "CellBias");
4084  ValidateTensorNumDimNumElem(m_CellBias->GetTensorInfo(), 1, n_cell, "CellBias");
4085 
4086  ValidatePointer(m_OutputGateBias, "Null pointer check", "OutputGateBias");
4087  ValidateTensorNumDimNumElem(m_OutputGateBias->GetTensorInfo(), 1, n_cell, "OutputGateBias");
4088 
4089  if (m_ProjectionWeights)
4090  {
4092  (n_cell * n_output), "ProjectionWeights");
4093  }
4094  if (m_ProjectionBias)
4095  {
4096  ValidateTensorNumDimNumElem(m_ProjectionBias->GetTensorInfo(), 1, n_output, "ProjectionBias");
4097  }
4098 
4099  // Making sure the projection tensors are consistent:
4100  // 1) If projection weight is not present, then projection bias should not be
4101  // present.
4102  // 2) If projection weight is present, then projection bias is optional.
4103  bool projecton_tensors_consistent = ((!m_ProjectionWeights && !m_ProjectionBias &&
4109  if (!projecton_tensors_consistent)
4110  {
4111  throw InvalidArgumentException(descriptorName + ": Projection tensors are inconsistent.");
4112  }
4113 
4114  // The four layer normalization weights either all have values or none of them have values. Additionally, if
4115  // CIFG is used, input layer normalization weights tensor is omitted and the other layer normalization weights
4116  // either all have values or none of them have values. Layer normalization is used when the values of all the
4117  // layer normalization weights are present
4119  {
4120  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(), 1, n_cell, "InputLayerNormWeights");
4121  }
4123  {
4124  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
4125  }
4127  {
4128  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
4129  }
4131  {
4132  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
4133  }
4134 
4136  {
4138  {
4140  {
4141  throw InvalidArgumentException(descriptorName + ": Layer normalisation is enabled and CIFG-LSTM is "
4142  "disabled but InputLayerNormWeights are not present");
4143  }
4145  1, n_cell, "InputLayerNormWeights");
4146  }
4147  else if (m_InputLayerNormWeights)
4148  {
4149  throw InvalidArgumentException(descriptorName + ":InputLayerNormWeights are present while CIFG is "
4150  "enabled");
4151  }
4152 
4153  ValidatePointer(m_ForgetLayerNormWeights, "Null pointer check layer normalisation enabled",
4154  "ForgetLayerNormWeights");
4155  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
4156 
4157  ValidatePointer(m_OutputLayerNormWeights, "Null pointer check layer normalisation enabled",
4158  "OutputLayerNormWeights");
4159  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
4160 
4161  ValidatePointer(m_CellLayerNormWeights, "Null pointer check layer normalisation enabled",
4162  "CellLayerNormWeights");
4163  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
4164  }
4166  {
4167  throw InvalidArgumentException(descriptorName + ": Layer normalisation is disabled but one or more layer "
4168  "normalisation weights are present.");
4169  }
4170 }

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::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_CellBias
const ConstTensorHandle * m_CellBias
Definition: WorkloadData.hpp:736
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:729
armnn::LstmDescriptor::m_TimeMajor
bool m_TimeMajor
Enable/disable time major.
Definition: Descriptors.hpp:1154
armnn::DataType::Float32
@ Float32
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:740
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:726
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:743
armnn::ConstTensorHandle::GetTensorInfo
const TensorInfo & GetTensorInfo() const
Definition: TensorHandle.hpp:40
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:737
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:741
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:724
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:730
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:738
armnn::LstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1148
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::LstmDescriptor::m_ClippingThresProj
float m_ClippingThresProj
Clipping threshold value for the projection.
Definition: Descriptors.hpp:1144
armnn::QueueDescriptorWithParameters< LstmDescriptor >::m_Parameters
LstmDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ForgetGateBias
const ConstTensorHandle * m_ForgetGateBias
Definition: WorkloadData.hpp:735
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:734
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:731
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:733
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:728
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:732
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:727
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToInputWeights
const ConstTensorHandle * m_InputToInputWeights
Definition: WorkloadData.hpp:723
armnn::LstmDescriptor::m_CifgEnabled
bool m_CifgEnabled
Enable/disable cifg (coupled input & forget gate).
Definition: Descriptors.hpp:1146
armnn::LstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1152
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionBias
const ConstTensorHandle * m_ProjectionBias
Definition: WorkloadData.hpp:739
armnn::LstmDescriptor::m_ProjectionEnabled
bool m_ProjectionEnabled
Enable/disable the projection layer.
Definition: Descriptors.hpp:1150
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToCellWeights
const ConstTensorHandle * m_InputToCellWeights
Definition: WorkloadData.hpp:725
armnn::QueueDescriptor::ValidateTensorNumDimNumElem
void ValidateTensorNumDimNumElem(const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
Definition: WorkloadData.cpp:435
armnn::LstmDescriptor::m_ClippingThresCell
float m_ClippingThresCell
Clipping threshold value for the cell state.
Definition: Descriptors.hpp:1142
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:742