ArmNN
 23.11
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 3145 of file WorkloadData.cpp.

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

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