ArmNN
 23.08
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 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 3914 of file WorkloadData.cpp.

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

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:731
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:724
armnn::LstmDescriptor::m_TimeMajor
bool m_TimeMajor
Enable/disable time major.
Definition: Descriptors.hpp:1133
armnn::DataType::Float32
@ Float32
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:735
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:721
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:738
armnn::ConstTensorHandle::GetTensorInfo
const TensorInfo & GetTensorInfo() const
Definition: TensorHandle.hpp:40
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:732
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:736
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:719
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:725
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:733
armnn::LstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1127
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:1123
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:730
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:729
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:726
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:728
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:723
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:727
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:722
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToInputWeights
const ConstTensorHandle * m_InputToInputWeights
Definition: WorkloadData.hpp:718
armnn::LstmDescriptor::m_CifgEnabled
bool m_CifgEnabled
Enable/disable cifg (coupled input & forget gate).
Definition: Descriptors.hpp:1125
armnn::LstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1131
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18
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:1129
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_InputToCellWeights
const ConstTensorHandle * m_InputToCellWeights
Definition: WorkloadData.hpp:720
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:1121
armnn::UnidirectionalSequenceLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:737