ArmNN
 23.02
QLstmQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

Inheritance diagram for QLstmQueueDescriptor:
QueueDescriptorWithParameters< QLstmDescriptor > QueueDescriptor

Public Member Functions

 QLstmQueueDescriptor ()
 
void Validate (const WorkloadInfo &workloadInfo) const
 
- Public Member Functions inherited from QueueDescriptorWithParameters< QLstmDescriptor >
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< QLstmDescriptor >
QLstmDescriptor 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< QLstmDescriptor >
 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 557 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ QLstmQueueDescriptor()

Definition at line 559 of file WorkloadData.hpp.

560  : m_InputToInputWeights(nullptr)
561  , m_InputToForgetWeights(nullptr)
562  , m_InputToCellWeights(nullptr)
563  , m_InputToOutputWeights(nullptr)
564  , m_RecurrentToInputWeights(nullptr)
565  , m_RecurrentToForgetWeights(nullptr)
566  , m_RecurrentToCellWeights(nullptr)
567  , m_RecurrentToOutputWeights(nullptr)
568  , m_CellToInputWeights(nullptr)
569  , m_CellToForgetWeights(nullptr)
570  , m_CellToOutputWeights(nullptr)
571  , m_InputGateBias(nullptr)
572  , m_ForgetGateBias(nullptr)
573  , m_CellBias(nullptr)
574  , m_OutputGateBias(nullptr)
575  , m_ProjectionWeights(nullptr)
576  , m_ProjectionBias(nullptr)
577  , m_InputLayerNormWeights(nullptr)
578  , m_ForgetLayerNormWeights(nullptr)
579  , m_CellLayerNormWeights(nullptr)
580  , m_OutputLayerNormWeights(nullptr)
581  {
582  }

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3055 of file WorkloadData.cpp.

3056 {
3057  const std::string descriptorName{"QLstmQueueDescriptor"};
3058 
3059  // Validate number of inputs/outputs
3060  ValidateNumInputs(workloadInfo, descriptorName, 3);
3061  ValidateNumOutputs(workloadInfo, descriptorName, 3);
3062 
3063  // Input/output tensor info
3064  auto inputInfo = workloadInfo.m_InputTensorInfos[0];
3065  auto outputStateInInfo = workloadInfo.m_InputTensorInfos[1];
3066  auto cellStateInInfo = workloadInfo.m_InputTensorInfos[2];
3067 
3068  auto outputStateOutInfo = workloadInfo.m_OutputTensorInfos[0];
3069  auto cellStateOutInfo = workloadInfo.m_OutputTensorInfos[1];
3070  auto outputInfo = workloadInfo.m_OutputTensorInfos[2];
3071 
3072  // Supported types for various tensors in QLSTM
3073  std::vector<DataType> inputOutputSupportedTypes =
3074  {
3076  };
3077 
3078  std::vector<DataType> cellStateSupportedTypes =
3079  {
3081  };
3082 
3083  std::vector<DataType> weightsSupportedTypes =
3084  {
3086  };
3087 
3088  std::vector<DataType> layerNormPeepholeWeightsSupportedTypes =
3089  {
3091  };
3092 
3093  std::vector<DataType> biasSupportedTypes =
3094  {
3096  };
3097 
3098  // Validate types of input/output tensors
3099  ValidateDataTypes(inputInfo, inputOutputSupportedTypes, descriptorName);
3100  ValidateDataTypes(outputStateInInfo, inputOutputSupportedTypes, descriptorName);
3101  ValidateDataTypes(cellStateInInfo, cellStateSupportedTypes, descriptorName);
3102 
3103  ValidateDataTypes(outputStateOutInfo, inputOutputSupportedTypes, descriptorName);
3104  ValidateDataTypes(cellStateOutInfo, cellStateSupportedTypes, descriptorName);
3105  ValidateDataTypes(outputInfo, inputOutputSupportedTypes, descriptorName);
3106 
3107  // Validate matching types of input/output tensors
3108  ValidateTensorDataTypesMatch(inputInfo, outputStateInInfo, descriptorName, "input", "outputStateIn");
3109  ValidateTensorDataTypesMatch(outputStateInInfo, outputStateOutInfo, descriptorName,
3110  "outputStateIn", "outputStateOut");
3111  ValidateTensorDataTypesMatch(cellStateInInfo, cellStateOutInfo, descriptorName, "cellStateIn", "cellStateOut");
3112 
3113  // Infer number of batches, number of units, input size and output size from tensor dimensions
3114  const uint32_t numBatches = inputInfo.GetShape()[0];
3115  const uint32_t inputSize = inputInfo.GetShape()[1];
3116  const uint32_t outputSize = outputStateInInfo.GetShape()[1];
3117  const uint32_t numUnits = cellStateInInfo.GetShape()[1];
3118 
3119  // Validate number of dimensions and number of elements for input/output tensors
3120  ValidateTensorNumDimNumElem(inputInfo, 2, (numBatches * inputSize), descriptorName + " input");
3121  ValidateTensorNumDimNumElem(outputStateInInfo, 2, (numBatches * outputSize), descriptorName + " outputStateIn");
3122  ValidateTensorNumDimNumElem(cellStateInInfo, 2, (numBatches * numUnits), descriptorName + " cellStateIn");
3123 
3124  ValidateTensorNumDimNumElem(outputStateOutInfo, 2, (numBatches * outputSize), descriptorName + " outputStateOut");
3125  ValidateTensorNumDimNumElem(cellStateOutInfo, 2, (numBatches * numUnits), descriptorName + " cellStateOut");
3126  ValidateTensorNumDimNumElem(outputInfo, 2, (numBatches * outputSize), descriptorName + " output");
3127 
3128  // Validate number of dimensions and number of elements for MANDATORY weight tensors
3129  ValidatePointer(m_InputToForgetWeights, descriptorName, "InputToForgetWeights");
3130  auto inputToForgetWeightsInfo = m_InputToForgetWeights->GetTensorInfo();
3131  ValidateTensorNumDimNumElem(inputToForgetWeightsInfo, 2, (numUnits * inputSize), " InputToForgetWeights");
3132 
3133  ValidatePointer(m_InputToCellWeights, descriptorName, "InputToCellWeights");
3134  auto inputToCellWeightsInfo = m_InputToCellWeights->GetTensorInfo();
3135  ValidateTensorNumDimNumElem(inputToCellWeightsInfo, 2, (numUnits * inputSize), " InputToCellWeights");
3136 
3137  ValidatePointer(m_InputToOutputWeights, descriptorName, "InputToOutputWeights");
3138  auto inputToOutputWeightsInfo = m_InputToOutputWeights->GetTensorInfo();
3139  ValidateTensorNumDimNumElem(inputToOutputWeightsInfo, 2, (numUnits * inputSize), " InputToOutputWeights");
3140 
3141  ValidatePointer(m_RecurrentToForgetWeights, descriptorName, "RecurrentToForgetWeights");
3142  auto recurrentToForgetWeightsInfo = m_RecurrentToForgetWeights->GetTensorInfo();
3143  ValidateTensorNumDimNumElem(recurrentToForgetWeightsInfo, 2, (numUnits * outputSize),
3144  " RecurrentToForgetWeights");
3145 
3146  ValidatePointer(m_RecurrentToCellWeights, descriptorName, "RecurrentToCellWeights");
3147  auto recurrentToCellWeightsInfo = m_RecurrentToCellWeights->GetTensorInfo();
3148  ValidateTensorNumDimNumElem(recurrentToCellWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
3149 
3150  ValidatePointer(m_RecurrentToOutputWeights, descriptorName, "RecurrentToOutputWeights");
3151  auto recurrentToOutputWeightsInfo = m_RecurrentToOutputWeights->GetTensorInfo();
3152  ValidateTensorNumDimNumElem(recurrentToOutputWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
3153 
3154  // Validate data types for MANDATORY weights tensors (all should match each other)
3155  ValidateDataTypes(inputToForgetWeightsInfo, weightsSupportedTypes, descriptorName);
3156 
3157  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToCellWeightsInfo, descriptorName,
3158  "inputToForgetWeights", "inputToCellWeights");
3159  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToOutputWeightsInfo, descriptorName,
3160  "inputToForgetWeights", "inputToOutputWeights");
3161 
3162  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToForgetWeightsInfo, descriptorName,
3163  "inputToForgetWeights", "recurrentToForgeteights");
3164  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToCellWeightsInfo, descriptorName,
3165  "inputToForgetWeights", "recurrentToCellWeights");
3166  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToOutputWeightsInfo, descriptorName,
3167  "inputToForgetWeights", "recurrentToOutputWeights");
3168 
3169  // Validate number of dimensions and number of elements for MANDATORY bias tensors
3170  ValidatePointer(m_ForgetGateBias, descriptorName, "ForgetGateBias");
3171  auto forgetGateBiasInfo = m_ForgetGateBias->GetTensorInfo();
3172  ValidateTensorNumDimNumElem(forgetGateBiasInfo, 1, numUnits, " ForgetGateBias");
3173 
3174  ValidatePointer(m_CellBias, descriptorName, "CellBias");
3175  auto cellBiasInfo = m_CellBias->GetTensorInfo();
3176  ValidateTensorNumDimNumElem(cellBiasInfo, 1, numUnits, " CellBias");
3177 
3178  ValidatePointer(m_OutputGateBias, descriptorName, "OutputGateBias");
3179  auto outputGateBiasInfo = m_OutputGateBias->GetTensorInfo();
3180  ValidateTensorNumDimNumElem(outputGateBiasInfo, 1, numUnits, " OutputGateBias");
3181 
3182  // Validate data types for MANDATORY bias tensors
3183  ValidateDataTypes(forgetGateBiasInfo, biasSupportedTypes, descriptorName);
3184 
3185  ValidateTensorDataTypesMatch(forgetGateBiasInfo, cellBiasInfo, descriptorName,
3186  "forgetGateBias", "cellBias");
3187  ValidateTensorDataTypesMatch(forgetGateBiasInfo, outputGateBiasInfo, descriptorName,
3188  "forgetGateBias", "outputGateBias");
3189 
3190  // Validate OPTIONAL params: CIFG (inputToInputWeights, recurrentToInputWeights, inputGateBias)
3191  const bool allCifgParamsPresentOrNot = ((m_InputToInputWeights && m_RecurrentToInputWeights && m_InputGateBias &&
3195 
3196  if (!allCifgParamsPresentOrNot)
3197  {
3198  throw InvalidArgumentException(descriptorName +
3199  ": InputToInputWeights, RecurrentToInputWeights and InputGateBias must either all be present "
3200  "(CIFG disabled) or not be present at all (CIFG enabled). m_Parameters.m_CifgEnabled should be "
3201  "set appropriately.");
3202  }
3203 
3205  {
3206  // Validate number of dimensions and number of elements
3207  auto inputToInputWeightsInfo = m_InputToInputWeights->GetTensorInfo();
3208  ValidateTensorNumDimNumElem(inputToInputWeightsInfo, 2, (numUnits * inputSize), " InputToInputWeights");
3209 
3210  auto recurrentToInputWeightsInfo = m_RecurrentToInputWeights->GetTensorInfo();
3211  ValidateTensorNumDimNumElem(recurrentToInputWeightsInfo, 2, (numUnits * outputSize),
3212  " RecurrentToInputWeights");
3213 
3214  auto inputGateBiasInfo = m_InputGateBias->GetTensorInfo();
3215  ValidateTensorNumDimNumElem(inputGateBiasInfo, 1, numUnits, " InputGateBias");
3216 
3217  // Validate data types
3218  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToInputWeightsInfo, descriptorName,
3219  "inputToForgetWeights", "inputToInputWeights");
3220  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToInputWeightsInfo, descriptorName,
3221  "inputToForgetWeights", "recurrentToInputWeights");
3222  ValidateTensorDataTypesMatch(forgetGateBiasInfo, inputGateBiasInfo, descriptorName,
3223  "forgetGateBias", "inputGateBias");
3224  }
3225 
3226  // Validate OPTIONAL params: Peephole (cellToInputWeights, cellToForgetWeights, cellToOutputWeights)
3227  bool allPeepholeWeightsPresentOrNot =
3232 
3233  if (!allPeepholeWeightsPresentOrNot)
3234  {
3235  throw InvalidArgumentException(descriptorName +
3236  ": CellToInputWeights, CellToForgetWeights and CellToOutputWeights should all be present (Peephole "
3237  "enabled) or not be present at all (Peephole disabled). CellToInputWeights should only be present "
3238  "when Peephole is enabled and CIFG is disabled. m_Parameters.m_PeepholeEnabled should be set "
3239  "appropriately.");
3240  }
3241 
3243  {
3244  auto cellToForgetWeightsInfo = m_CellToForgetWeights->GetTensorInfo();
3245  ValidateTensorNumDimNumElem(cellToForgetWeightsInfo, 1, numUnits, " cellToForgetWeights");
3246  ValidateDataTypes(cellToForgetWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3247 
3248  auto cellToOutputWeightsInfo = m_CellToOutputWeights->GetTensorInfo();
3249  ValidateTensorNumDimNumElem(cellToOutputWeightsInfo, 1, numUnits, " cellToOutputWeights");
3250  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToOutputWeightsInfo, descriptorName,
3251  "cellToForgetWeight", "cellToOutputWeights");
3252 
3254  {
3255  auto cellToInputWeightsInfo = m_CellToInputWeights->GetTensorInfo();
3256  ValidateTensorNumDimNumElem(cellToInputWeightsInfo, 1, numUnits, " cellToInputWeights");
3257  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToInputWeightsInfo, descriptorName,
3258  "cellToForgetWeights", "cellToInputWeights");
3259  }
3260  }
3261 
3262  // Validate OPTIONAL params: Layer Norm Weights
3263  bool allLayerNormWeightsPresentOrNot =
3268 
3269  if (!allLayerNormWeightsPresentOrNot)
3270  {
3271  throw InvalidArgumentException(descriptorName +
3272  ": InputLayerNormWeights, ForgetLayerNormWeights, m_OutputLayerNormWeights "
3273  "and CellLayerNormWeights should all be present (Layer Norm enabled) or not "
3274  "be present at all (Layer Norm disabled). InputLayerNormWeights should "
3275  "only be present when Layer Norm is enabled and CIFG is disabled. "
3276  "m_Parameters.m_LayerNormEnabled should be set appropriately.");
3277  }
3278 
3280  {
3281  auto forgetLayerNormWeightsInfo = m_ForgetLayerNormWeights->GetTensorInfo();
3282  ValidateTensorNumDimNumElem(forgetLayerNormWeightsInfo, 1, numUnits, " forgetLayerNormWeights");
3283  ValidateDataTypes(forgetLayerNormWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3284 
3285  auto cellLayerNormWeightsInfo = m_CellLayerNormWeights->GetTensorInfo();
3286  ValidateTensorNumDimNumElem(cellLayerNormWeightsInfo, 1, numUnits, " cellLayerNormWeights");
3287  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, cellLayerNormWeightsInfo, descriptorName,
3288  "forgetLayerNormWeights", "cellLayerNormWeights");
3289 
3290  auto outputLayerNormWeightsInfo = m_OutputLayerNormWeights->GetTensorInfo();
3291  ValidateTensorNumDimNumElem(outputLayerNormWeightsInfo, 1, numUnits, " outputLayerNormWeights");
3292  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, outputLayerNormWeightsInfo, descriptorName,
3293  "forgetLayerNormWeights", "outputLayerNormWeights");
3294 
3296  {
3297  auto inputLayerNormWeightsInfo = m_InputLayerNormWeights->GetTensorInfo();
3298  ValidateTensorNumDimNumElem(inputLayerNormWeightsInfo, 1, numUnits, " inputLayerNormWeights");
3299  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, inputLayerNormWeightsInfo, descriptorName,
3300  "forgetLayerNormWeights", "inputLayerNormWeights");
3301  }
3302  }
3303 
3304  // Validate OPTIONAL params: Projection (projectionWeights, projectionBias)
3305  bool correctProjectionTensorsPresent =
3309 
3310  if (!correctProjectionTensorsPresent)
3311  {
3312  throw InvalidArgumentException(descriptorName +
3313  ": If projection is enabled, ProjectionWeights should be present and "
3314  "ProjectionBias is optional. If projection is disabled, neither "
3315  "ProjectionWeights nor ProjectionBias should be present.");
3316  }
3317 
3319  {
3320  auto projectionWeightsInfo = m_ProjectionWeights->GetTensorInfo();
3321  ValidateTensorNumDimNumElem(projectionWeightsInfo, 2, (numUnits * outputSize), "ProjectionWeights");
3322  ValidateDataTypes(projectionWeightsInfo, weightsSupportedTypes, descriptorName);
3323 
3324  if (m_ProjectionBias)
3325  {
3326  auto projectionBiasInfo = m_ProjectionBias->GetTensorInfo();
3327  ValidateTensorNumDimNumElem(projectionBiasInfo, 1, outputSize, "ProjectionBias");
3328  ValidateDataTypes(projectionBiasInfo, biasSupportedTypes, descriptorName);
3329  }
3330 
3331  }
3332  else if ((outputInfo.GetQuantizationScale() != m_Parameters.m_HiddenStateScale) &&
3333  outputInfo.GetQuantizationOffset() != m_Parameters.m_HiddenStateZeroPoint) {
3334  throw InvalidArgumentException(descriptorName +
3335  ": If projection is disabled, output quantization info (scale, offset) "
3336  "should match HiddenStateScale and HiddenStateZeroPoint.");
3337  }
3338 
3339 }

References TensorInfo::GetQuantizationOffset(), TensorInfo::GetQuantizationScale(), TensorInfo::GetShape(), ConstTensorHandle::GetTensorInfo(), QLstmQueueDescriptor::m_CellBias, QLstmQueueDescriptor::m_CellLayerNormWeights, QLstmQueueDescriptor::m_CellToForgetWeights, QLstmQueueDescriptor::m_CellToInputWeights, QLstmQueueDescriptor::m_CellToOutputWeights, QLstmDescriptor::m_CifgEnabled, QLstmQueueDescriptor::m_ForgetGateBias, QLstmQueueDescriptor::m_ForgetLayerNormWeights, QLstmDescriptor::m_HiddenStateScale, QLstmDescriptor::m_HiddenStateZeroPoint, QLstmQueueDescriptor::m_InputGateBias, QLstmQueueDescriptor::m_InputLayerNormWeights, WorkloadInfo::m_InputTensorInfos, QLstmQueueDescriptor::m_InputToCellWeights, QLstmQueueDescriptor::m_InputToForgetWeights, QLstmQueueDescriptor::m_InputToInputWeights, QLstmQueueDescriptor::m_InputToOutputWeights, QLstmDescriptor::m_LayerNormEnabled, QLstmQueueDescriptor::m_OutputGateBias, QLstmQueueDescriptor::m_OutputLayerNormWeights, WorkloadInfo::m_OutputTensorInfos, QueueDescriptorWithParameters< QLstmDescriptor >::m_Parameters, QLstmDescriptor::m_PeepholeEnabled, QLstmQueueDescriptor::m_ProjectionBias, QLstmDescriptor::m_ProjectionEnabled, QLstmQueueDescriptor::m_ProjectionWeights, QLstmQueueDescriptor::m_RecurrentToCellWeights, QLstmQueueDescriptor::m_RecurrentToForgetWeights, QLstmQueueDescriptor::m_RecurrentToInputWeights, QLstmQueueDescriptor::m_RecurrentToOutputWeights, armnn::QAsymmS8, armnn::QSymmS16, armnn::QSymmS8, armnn::Signed32, and QueueDescriptor::ValidateTensorNumDimNumElem().

Member Data Documentation

◆ m_CellBias

const ConstTensorHandle* m_CellBias

Definition at line 597 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_CellLayerNormWeights

const ConstTensorHandle* m_CellLayerNormWeights

Definition at line 603 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_CellToForgetWeights

const ConstTensorHandle* m_CellToForgetWeights

Definition at line 593 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_CellToInputWeights

const ConstTensorHandle* m_CellToInputWeights

Definition at line 592 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_CellToOutputWeights

const ConstTensorHandle* m_CellToOutputWeights

Definition at line 594 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_ForgetGateBias

const ConstTensorHandle* m_ForgetGateBias

Definition at line 596 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_ForgetLayerNormWeights

const ConstTensorHandle* m_ForgetLayerNormWeights

Definition at line 602 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputGateBias

const ConstTensorHandle* m_InputGateBias

Definition at line 595 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputLayerNormWeights

const ConstTensorHandle* m_InputLayerNormWeights

Definition at line 601 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputToCellWeights

const ConstTensorHandle* m_InputToCellWeights

Definition at line 586 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputToForgetWeights

const ConstTensorHandle* m_InputToForgetWeights

Definition at line 585 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputToInputWeights

const ConstTensorHandle* m_InputToInputWeights

Definition at line 584 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_InputToOutputWeights

const ConstTensorHandle* m_InputToOutputWeights

Definition at line 587 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_OutputGateBias

const ConstTensorHandle* m_OutputGateBias

Definition at line 598 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_OutputLayerNormWeights

const ConstTensorHandle* m_OutputLayerNormWeights

Definition at line 604 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_ProjectionBias

const ConstTensorHandle* m_ProjectionBias

Definition at line 600 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_ProjectionWeights

const ConstTensorHandle* m_ProjectionWeights

Definition at line 599 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_RecurrentToCellWeights

const ConstTensorHandle* m_RecurrentToCellWeights

Definition at line 590 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_RecurrentToForgetWeights

const ConstTensorHandle* m_RecurrentToForgetWeights

Definition at line 589 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_RecurrentToInputWeights

const ConstTensorHandle* m_RecurrentToInputWeights

Definition at line 588 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().

◆ m_RecurrentToOutputWeights

const ConstTensorHandle* m_RecurrentToOutputWeights

Definition at line 591 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload(), and QLstmQueueDescriptor::Validate().


The documentation for this struct was generated from the following files:
armnn::QLstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1371
armnn::QLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:589
armnn::QueueDescriptor::ValidateTensorNumDimNumElem
void ValidateTensorNumDimNumElem(const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
Definition: WorkloadData.cpp:464
armnn::QLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:598
armnn::DataType::Signed32
@ Signed32
armnn::QLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:587
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::QLstmQueueDescriptor::m_ProjectionBias
const ConstTensorHandle * m_ProjectionBias
Definition: WorkloadData.hpp:600
armnn::QLstmQueueDescriptor::m_CellBias
const ConstTensorHandle * m_CellBias
Definition: WorkloadData.hpp:597
armnn::QLstmQueueDescriptor::m_ForgetGateBias
const ConstTensorHandle * m_ForgetGateBias
Definition: WorkloadData.hpp:596
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::QLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:585
armnn::QLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:602
armnn::QLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:592
armnn::QLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:599
armnn::QLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:588
armnn::ConstTensorHandle::GetTensorInfo
const TensorInfo & GetTensorInfo() const
Definition: TensorHandle.hpp:40
armnn::QLstmDescriptor::m_HiddenStateScale
float m_HiddenStateScale
Hidden State quantization scale.
Definition: Descriptors.hpp:1383
armnn::QLstmDescriptor::m_HiddenStateZeroPoint
int32_t m_HiddenStateZeroPoint
Hidden State zero point.
Definition: Descriptors.hpp:1381
armnn::QLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:594
armnn::QLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:604
armnn::QueueDescriptorWithParameters< QLstmDescriptor >::m_Parameters
QLstmDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::QLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:603
armnn::QLstmQueueDescriptor::m_InputToCellWeights
const ConstTensorHandle * m_InputToCellWeights
Definition: WorkloadData.hpp:586
armnn::QLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:591
armnn::DataType::QSymmS8
@ QSymmS8
armnn::QLstmDescriptor::m_CifgEnabled
bool m_CifgEnabled
Enable/disable CIFG (coupled input & forget gate).
Definition: Descriptors.hpp:1365
armnn::QLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:593
armnn::DataType::QSymmS16
@ QSymmS16
armnn::QLstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1367
armnn::QLstmQueueDescriptor::m_InputToInputWeights
const ConstTensorHandle * m_InputToInputWeights
Definition: WorkloadData.hpp:584
armnn::QLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:590
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::QLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:595
armnn::QLstmDescriptor::m_ProjectionEnabled
bool m_ProjectionEnabled
Enable/disable the projection layer.
Definition: Descriptors.hpp:1369
armnn::QLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:601
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18