ArmNN
 24.02
QLstmQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

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

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

Constructor & Destructor Documentation

◆ QLstmQueueDescriptor()

Definition at line 564 of file WorkloadData.hpp.

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

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 3146 of file WorkloadData.cpp.

3147 {
3148  const std::string descriptorName{"QLstmQueueDescriptor"};
3149 
3150  // Validate number of inputs/outputs
3151  ValidateNumInputs(workloadInfo, descriptorName, 3);
3152  ValidateNumOutputs(workloadInfo, descriptorName, 3);
3153 
3154  // Input/output tensor info
3155  auto inputInfo = workloadInfo.m_InputTensorInfos[0];
3156  auto outputStateInInfo = workloadInfo.m_InputTensorInfos[1];
3157  auto cellStateInInfo = workloadInfo.m_InputTensorInfos[2];
3158 
3159  auto outputStateOutInfo = workloadInfo.m_OutputTensorInfos[0];
3160  auto cellStateOutInfo = workloadInfo.m_OutputTensorInfos[1];
3161  auto outputInfo = workloadInfo.m_OutputTensorInfos[2];
3162 
3163  // Supported types for various tensors in QLSTM
3164  std::vector<DataType> inputOutputSupportedTypes =
3165  {
3167  };
3168 
3169  std::vector<DataType> cellStateSupportedTypes =
3170  {
3172  };
3173 
3174  std::vector<DataType> weightsSupportedTypes =
3175  {
3177  };
3178 
3179  std::vector<DataType> layerNormPeepholeWeightsSupportedTypes =
3180  {
3182  };
3183 
3184  std::vector<DataType> biasSupportedTypes =
3185  {
3187  };
3188 
3189  // Validate types of input/output tensors
3190  ValidateDataTypes(inputInfo, inputOutputSupportedTypes, descriptorName);
3191  ValidateDataTypes(outputStateInInfo, inputOutputSupportedTypes, descriptorName);
3192  ValidateDataTypes(cellStateInInfo, cellStateSupportedTypes, descriptorName);
3193 
3194  ValidateDataTypes(outputStateOutInfo, inputOutputSupportedTypes, descriptorName);
3195  ValidateDataTypes(cellStateOutInfo, cellStateSupportedTypes, descriptorName);
3196  ValidateDataTypes(outputInfo, inputOutputSupportedTypes, descriptorName);
3197 
3198  // Validate matching types of input/output tensors
3199  ValidateTensorDataTypesMatch(inputInfo, outputStateInInfo, descriptorName, "input", "outputStateIn");
3200  ValidateTensorDataTypesMatch(outputStateInInfo, outputStateOutInfo, descriptorName,
3201  "outputStateIn", "outputStateOut");
3202  ValidateTensorDataTypesMatch(cellStateInInfo, cellStateOutInfo, descriptorName, "cellStateIn", "cellStateOut");
3203 
3204  // Infer number of batches, number of units, input size and output size from tensor dimensions
3205  const uint32_t numBatches = inputInfo.GetShape()[0];
3206  const uint32_t inputSize = inputInfo.GetShape()[1];
3207  const uint32_t outputSize = outputStateInInfo.GetShape()[1];
3208  const uint32_t numUnits = cellStateInInfo.GetShape()[1];
3209 
3210  // Validate number of dimensions and number of elements for input/output tensors
3211  ValidateTensorNumDimNumElem(inputInfo, 2, (numBatches * inputSize), descriptorName + " input");
3212  ValidateTensorNumDimNumElem(outputStateInInfo, 2, (numBatches * outputSize), descriptorName + " outputStateIn");
3213  ValidateTensorNumDimNumElem(cellStateInInfo, 2, (numBatches * numUnits), descriptorName + " cellStateIn");
3214 
3215  ValidateTensorNumDimNumElem(outputStateOutInfo, 2, (numBatches * outputSize), descriptorName + " outputStateOut");
3216  ValidateTensorNumDimNumElem(cellStateOutInfo, 2, (numBatches * numUnits), descriptorName + " cellStateOut");
3217  ValidateTensorNumDimNumElem(outputInfo, 2, (numBatches * outputSize), descriptorName + " output");
3218 
3219  // Validate number of dimensions and number of elements for MANDATORY weight tensors
3220  ValidatePointer(m_InputToForgetWeights, descriptorName, "InputToForgetWeights");
3221  auto inputToForgetWeightsInfo = m_InputToForgetWeights->GetTensorInfo();
3222  ValidateTensorNumDimNumElem(inputToForgetWeightsInfo, 2, (numUnits * inputSize), " InputToForgetWeights");
3223 
3224  ValidatePointer(m_InputToCellWeights, descriptorName, "InputToCellWeights");
3225  auto inputToCellWeightsInfo = m_InputToCellWeights->GetTensorInfo();
3226  ValidateTensorNumDimNumElem(inputToCellWeightsInfo, 2, (numUnits * inputSize), " InputToCellWeights");
3227 
3228  ValidatePointer(m_InputToOutputWeights, descriptorName, "InputToOutputWeights");
3229  auto inputToOutputWeightsInfo = m_InputToOutputWeights->GetTensorInfo();
3230  ValidateTensorNumDimNumElem(inputToOutputWeightsInfo, 2, (numUnits * inputSize), " InputToOutputWeights");
3231 
3232  ValidatePointer(m_RecurrentToForgetWeights, descriptorName, "RecurrentToForgetWeights");
3233  auto recurrentToForgetWeightsInfo = m_RecurrentToForgetWeights->GetTensorInfo();
3234  ValidateTensorNumDimNumElem(recurrentToForgetWeightsInfo, 2, (numUnits * outputSize),
3235  " RecurrentToForgetWeights");
3236 
3237  ValidatePointer(m_RecurrentToCellWeights, descriptorName, "RecurrentToCellWeights");
3238  auto recurrentToCellWeightsInfo = m_RecurrentToCellWeights->GetTensorInfo();
3239  ValidateTensorNumDimNumElem(recurrentToCellWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
3240 
3241  ValidatePointer(m_RecurrentToOutputWeights, descriptorName, "RecurrentToOutputWeights");
3242  auto recurrentToOutputWeightsInfo = m_RecurrentToOutputWeights->GetTensorInfo();
3243  ValidateTensorNumDimNumElem(recurrentToOutputWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
3244 
3245  // Validate data types for MANDATORY weights tensors (all should match each other)
3246  ValidateDataTypes(inputToForgetWeightsInfo, weightsSupportedTypes, descriptorName);
3247 
3248  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToCellWeightsInfo, descriptorName,
3249  "inputToForgetWeights", "inputToCellWeights");
3250  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToOutputWeightsInfo, descriptorName,
3251  "inputToForgetWeights", "inputToOutputWeights");
3252 
3253  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToForgetWeightsInfo, descriptorName,
3254  "inputToForgetWeights", "recurrentToForgeteights");
3255  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToCellWeightsInfo, descriptorName,
3256  "inputToForgetWeights", "recurrentToCellWeights");
3257  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToOutputWeightsInfo, descriptorName,
3258  "inputToForgetWeights", "recurrentToOutputWeights");
3259 
3260  // Validate number of dimensions and number of elements for MANDATORY bias tensors
3261  ValidatePointer(m_ForgetGateBias, descriptorName, "ForgetGateBias");
3262  auto forgetGateBiasInfo = m_ForgetGateBias->GetTensorInfo();
3263  ValidateTensorNumDimNumElem(forgetGateBiasInfo, 1, numUnits, " ForgetGateBias");
3264 
3265  ValidatePointer(m_CellBias, descriptorName, "CellBias");
3266  auto cellBiasInfo = m_CellBias->GetTensorInfo();
3267  ValidateTensorNumDimNumElem(cellBiasInfo, 1, numUnits, " CellBias");
3268 
3269  ValidatePointer(m_OutputGateBias, descriptorName, "OutputGateBias");
3270  auto outputGateBiasInfo = m_OutputGateBias->GetTensorInfo();
3271  ValidateTensorNumDimNumElem(outputGateBiasInfo, 1, numUnits, " OutputGateBias");
3272 
3273  // Validate data types for MANDATORY bias tensors
3274  ValidateDataTypes(forgetGateBiasInfo, biasSupportedTypes, descriptorName);
3275 
3276  ValidateTensorDataTypesMatch(forgetGateBiasInfo, cellBiasInfo, descriptorName,
3277  "forgetGateBias", "cellBias");
3278  ValidateTensorDataTypesMatch(forgetGateBiasInfo, outputGateBiasInfo, descriptorName,
3279  "forgetGateBias", "outputGateBias");
3280 
3281  // Validate OPTIONAL params: CIFG (inputToInputWeights, recurrentToInputWeights, inputGateBias)
3282  const bool allCifgParamsPresentOrNot = ((m_InputToInputWeights && m_RecurrentToInputWeights && m_InputGateBias &&
3286 
3287  if (!allCifgParamsPresentOrNot)
3288  {
3289  throw InvalidArgumentException(descriptorName +
3290  ": InputToInputWeights, RecurrentToInputWeights and InputGateBias must either all be present "
3291  "(CIFG disabled) or not be present at all (CIFG enabled). m_Parameters.m_CifgEnabled should be "
3292  "set appropriately.");
3293  }
3294 
3296  {
3297  // Validate number of dimensions and number of elements
3298  auto inputToInputWeightsInfo = m_InputToInputWeights->GetTensorInfo();
3299  ValidateTensorNumDimNumElem(inputToInputWeightsInfo, 2, (numUnits * inputSize), " InputToInputWeights");
3300 
3301  auto recurrentToInputWeightsInfo = m_RecurrentToInputWeights->GetTensorInfo();
3302  ValidateTensorNumDimNumElem(recurrentToInputWeightsInfo, 2, (numUnits * outputSize),
3303  " RecurrentToInputWeights");
3304 
3305  auto inputGateBiasInfo = m_InputGateBias->GetTensorInfo();
3306  ValidateTensorNumDimNumElem(inputGateBiasInfo, 1, numUnits, " InputGateBias");
3307 
3308  // Validate data types
3309  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToInputWeightsInfo, descriptorName,
3310  "inputToForgetWeights", "inputToInputWeights");
3311  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToInputWeightsInfo, descriptorName,
3312  "inputToForgetWeights", "recurrentToInputWeights");
3313  ValidateTensorDataTypesMatch(forgetGateBiasInfo, inputGateBiasInfo, descriptorName,
3314  "forgetGateBias", "inputGateBias");
3315  }
3316 
3317  // Validate OPTIONAL params: Peephole (cellToInputWeights, cellToForgetWeights, cellToOutputWeights)
3318  bool allPeepholeWeightsPresentOrNot =
3323 
3324  if (!allPeepholeWeightsPresentOrNot)
3325  {
3326  throw InvalidArgumentException(descriptorName +
3327  ": CellToInputWeights, CellToForgetWeights and CellToOutputWeights should all be present (Peephole "
3328  "enabled) or not be present at all (Peephole disabled). CellToInputWeights should only be present "
3329  "when Peephole is enabled and CIFG is disabled. m_Parameters.m_PeepholeEnabled should be set "
3330  "appropriately.");
3331  }
3332 
3334  {
3335  auto cellToForgetWeightsInfo = m_CellToForgetWeights->GetTensorInfo();
3336  ValidateTensorNumDimNumElem(cellToForgetWeightsInfo, 1, numUnits, " cellToForgetWeights");
3337  ValidateDataTypes(cellToForgetWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3338 
3339  auto cellToOutputWeightsInfo = m_CellToOutputWeights->GetTensorInfo();
3340  ValidateTensorNumDimNumElem(cellToOutputWeightsInfo, 1, numUnits, " cellToOutputWeights");
3341  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToOutputWeightsInfo, descriptorName,
3342  "cellToForgetWeight", "cellToOutputWeights");
3343 
3345  {
3346  auto cellToInputWeightsInfo = m_CellToInputWeights->GetTensorInfo();
3347  ValidateTensorNumDimNumElem(cellToInputWeightsInfo, 1, numUnits, " cellToInputWeights");
3348  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToInputWeightsInfo, descriptorName,
3349  "cellToForgetWeights", "cellToInputWeights");
3350  }
3351  }
3352 
3353  // Validate OPTIONAL params: Layer Norm Weights
3354  bool allLayerNormWeightsPresentOrNot =
3359 
3360  if (!allLayerNormWeightsPresentOrNot)
3361  {
3362  throw InvalidArgumentException(descriptorName +
3363  ": InputLayerNormWeights, ForgetLayerNormWeights, m_OutputLayerNormWeights "
3364  "and CellLayerNormWeights should all be present (Layer Norm enabled) or not "
3365  "be present at all (Layer Norm disabled). InputLayerNormWeights should "
3366  "only be present when Layer Norm is enabled and CIFG is disabled. "
3367  "m_Parameters.m_LayerNormEnabled should be set appropriately.");
3368  }
3369 
3371  {
3372  auto forgetLayerNormWeightsInfo = m_ForgetLayerNormWeights->GetTensorInfo();
3373  ValidateTensorNumDimNumElem(forgetLayerNormWeightsInfo, 1, numUnits, " forgetLayerNormWeights");
3374  ValidateDataTypes(forgetLayerNormWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3375 
3376  auto cellLayerNormWeightsInfo = m_CellLayerNormWeights->GetTensorInfo();
3377  ValidateTensorNumDimNumElem(cellLayerNormWeightsInfo, 1, numUnits, " cellLayerNormWeights");
3378  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, cellLayerNormWeightsInfo, descriptorName,
3379  "forgetLayerNormWeights", "cellLayerNormWeights");
3380 
3381  auto outputLayerNormWeightsInfo = m_OutputLayerNormWeights->GetTensorInfo();
3382  ValidateTensorNumDimNumElem(outputLayerNormWeightsInfo, 1, numUnits, " outputLayerNormWeights");
3383  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, outputLayerNormWeightsInfo, descriptorName,
3384  "forgetLayerNormWeights", "outputLayerNormWeights");
3385 
3387  {
3388  auto inputLayerNormWeightsInfo = m_InputLayerNormWeights->GetTensorInfo();
3389  ValidateTensorNumDimNumElem(inputLayerNormWeightsInfo, 1, numUnits, " inputLayerNormWeights");
3390  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, inputLayerNormWeightsInfo, descriptorName,
3391  "forgetLayerNormWeights", "inputLayerNormWeights");
3392  }
3393  }
3394 
3395  // Validate OPTIONAL params: Projection (projectionWeights, projectionBias)
3396  bool correctProjectionTensorsPresent =
3400 
3401  if (!correctProjectionTensorsPresent)
3402  {
3403  throw InvalidArgumentException(descriptorName +
3404  ": If projection is enabled, ProjectionWeights should be present and "
3405  "ProjectionBias is optional. If projection is disabled, neither "
3406  "ProjectionWeights nor ProjectionBias should be present.");
3407  }
3408 
3410  {
3411  auto projectionWeightsInfo = m_ProjectionWeights->GetTensorInfo();
3412  ValidateTensorNumDimNumElem(projectionWeightsInfo, 2, (numUnits * outputSize), "ProjectionWeights");
3413  ValidateDataTypes(projectionWeightsInfo, weightsSupportedTypes, descriptorName);
3414 
3415  if (m_ProjectionBias)
3416  {
3417  auto projectionBiasInfo = m_ProjectionBias->GetTensorInfo();
3418  ValidateTensorNumDimNumElem(projectionBiasInfo, 1, outputSize, "ProjectionBias");
3419  ValidateDataTypes(projectionBiasInfo, biasSupportedTypes, descriptorName);
3420  }
3421 
3422  }
3423  else if ((outputInfo.GetQuantizationScale() != m_Parameters.m_HiddenStateScale) &&
3424  outputInfo.GetQuantizationOffset() != m_Parameters.m_HiddenStateZeroPoint) {
3425  throw InvalidArgumentException(descriptorName +
3426  ": If projection is disabled, output quantization info (scale, offset) "
3427  "should match HiddenStateScale and HiddenStateZeroPoint.");
3428  }
3429 
3430 }

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

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

◆ m_CellLayerNormWeights

const ConstTensorHandle* m_CellLayerNormWeights

Definition at line 608 of file WorkloadData.hpp.

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

◆ m_CellToForgetWeights

const ConstTensorHandle* m_CellToForgetWeights

Definition at line 598 of file WorkloadData.hpp.

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

◆ m_CellToInputWeights

const ConstTensorHandle* m_CellToInputWeights

Definition at line 597 of file WorkloadData.hpp.

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

◆ m_CellToOutputWeights

const ConstTensorHandle* m_CellToOutputWeights

Definition at line 599 of file WorkloadData.hpp.

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

◆ m_ForgetGateBias

const ConstTensorHandle* m_ForgetGateBias

Definition at line 601 of file WorkloadData.hpp.

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

◆ m_ForgetLayerNormWeights

const ConstTensorHandle* m_ForgetLayerNormWeights

Definition at line 607 of file WorkloadData.hpp.

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

◆ m_InputGateBias

const ConstTensorHandle* m_InputGateBias

Definition at line 600 of file WorkloadData.hpp.

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

◆ m_InputLayerNormWeights

const ConstTensorHandle* m_InputLayerNormWeights

Definition at line 606 of file WorkloadData.hpp.

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

◆ m_InputToCellWeights

const ConstTensorHandle* m_InputToCellWeights

Definition at line 591 of file WorkloadData.hpp.

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

◆ m_InputToForgetWeights

const ConstTensorHandle* m_InputToForgetWeights

Definition at line 590 of file WorkloadData.hpp.

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

◆ m_InputToInputWeights

const ConstTensorHandle* m_InputToInputWeights

Definition at line 589 of file WorkloadData.hpp.

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

◆ m_InputToOutputWeights

const ConstTensorHandle* m_InputToOutputWeights

Definition at line 592 of file WorkloadData.hpp.

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

◆ m_OutputGateBias

const ConstTensorHandle* m_OutputGateBias

Definition at line 603 of file WorkloadData.hpp.

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

◆ m_OutputLayerNormWeights

const ConstTensorHandle* m_OutputLayerNormWeights

Definition at line 609 of file WorkloadData.hpp.

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

◆ m_ProjectionBias

const ConstTensorHandle* m_ProjectionBias

Definition at line 605 of file WorkloadData.hpp.

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

◆ m_ProjectionWeights

const ConstTensorHandle* m_ProjectionWeights

Definition at line 604 of file WorkloadData.hpp.

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

◆ m_RecurrentToCellWeights

const ConstTensorHandle* m_RecurrentToCellWeights

Definition at line 595 of file WorkloadData.hpp.

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

◆ m_RecurrentToForgetWeights

const ConstTensorHandle* m_RecurrentToForgetWeights

Definition at line 594 of file WorkloadData.hpp.

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

◆ m_RecurrentToInputWeights

const ConstTensorHandle* m_RecurrentToInputWeights

Definition at line 593 of file WorkloadData.hpp.

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

◆ m_RecurrentToOutputWeights

const ConstTensorHandle* m_RecurrentToOutputWeights

Definition at line 596 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_ProjectionEnabled
bool m_ProjectionEnabled
Enable/disable the projection layer.
Definition: Descriptors.hpp:1422
armnn::QLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:590
armnn::QLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:606
armnn::ConstTensorHandle::GetTensorInfo
const TensorInfo & GetTensorInfo() const
Definition: TensorHandle.hpp:40
armnn::DataType::QSymmS8
@ QSymmS8
armnn::QLstmQueueDescriptor::m_InputToInputWeights
const ConstTensorHandle * m_InputToInputWeights
Definition: WorkloadData.hpp:589
armnn::DataType::QSymmS16
@ QSymmS16
armnn::QLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:604
armnn::QLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:607
armnn::QLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:596
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::QLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:599
armnn::QueueDescriptorWithParameters< QLstmDescriptor >::m_Parameters
QLstmDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::QLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:598
armnn::QLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:609
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::QLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:600
armnn::QLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:603
armnn::QLstmQueueDescriptor::m_ForgetGateBias
const ConstTensorHandle * m_ForgetGateBias
Definition: WorkloadData.hpp:601
armnn::QLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:593
armnn::DataType::Signed32
@ Signed32
armnn::QLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:594
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::QLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:592
armnn::QLstmDescriptor::m_HiddenStateZeroPoint
int32_t m_HiddenStateZeroPoint
Hidden State zero point.
Definition: Descriptors.hpp:1434
armnn::WorkloadInfo::m_InputTensorInfos
std::vector< TensorInfo > m_InputTensorInfos
Definition: WorkloadInfo.hpp:18
armnn::QLstmDescriptor::m_CifgEnabled
bool m_CifgEnabled
Enable/disable CIFG (coupled input & forget gate).
Definition: Descriptors.hpp:1418
armnn::QLstmDescriptor::m_HiddenStateScale
float m_HiddenStateScale
Hidden State quantization scale.
Definition: Descriptors.hpp:1436
armnn::QLstmQueueDescriptor::m_ProjectionBias
const ConstTensorHandle * m_ProjectionBias
Definition: WorkloadData.hpp:605
armnn::QLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:597
armnn::QLstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1424
armnn::QLstmQueueDescriptor::m_CellBias
const ConstTensorHandle * m_CellBias
Definition: WorkloadData.hpp:602
armnn::QueueDescriptor::ValidateTensorNumDimNumElem
void ValidateTensorNumDimNumElem(const TensorInfo &tensorInfo, unsigned int numDimension, unsigned int numElements, std::string const &tensorName) const
Definition: WorkloadData.cpp:435
armnn::QLstmQueueDescriptor::m_InputToCellWeights
const ConstTensorHandle * m_InputToCellWeights
Definition: WorkloadData.hpp:591
armnn::QLstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1420
armnn::QLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:608
armnn::QLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:595