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

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

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_ProjectionEnabled
bool m_ProjectionEnabled
Enable/disable the projection layer.
Definition: Descriptors.hpp:1401
armnn::QLstmQueueDescriptor::m_InputToForgetWeights
const ConstTensorHandle * m_InputToForgetWeights
Definition: WorkloadData.hpp:585
armnn::QLstmQueueDescriptor::m_InputLayerNormWeights
const ConstTensorHandle * m_InputLayerNormWeights
Definition: WorkloadData.hpp:601
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:584
armnn::DataType::QSymmS16
@ QSymmS16
armnn::QLstmQueueDescriptor::m_ProjectionWeights
const ConstTensorHandle * m_ProjectionWeights
Definition: WorkloadData.hpp:599
armnn::QLstmQueueDescriptor::m_ForgetLayerNormWeights
const ConstTensorHandle * m_ForgetLayerNormWeights
Definition: WorkloadData.hpp:602
armnn::QLstmQueueDescriptor::m_RecurrentToOutputWeights
const ConstTensorHandle * m_RecurrentToOutputWeights
Definition: WorkloadData.hpp:591
armnn::WorkloadInfo::m_OutputTensorInfos
std::vector< TensorInfo > m_OutputTensorInfos
Definition: WorkloadInfo.hpp:19
armnn::QLstmQueueDescriptor::m_CellToOutputWeights
const ConstTensorHandle * m_CellToOutputWeights
Definition: WorkloadData.hpp:594
armnn::QueueDescriptorWithParameters< QLstmDescriptor >::m_Parameters
QLstmDescriptor m_Parameters
Definition: WorkloadData.hpp:66
armnn::QLstmQueueDescriptor::m_CellToForgetWeights
const ConstTensorHandle * m_CellToForgetWeights
Definition: WorkloadData.hpp:593
armnn::QLstmQueueDescriptor::m_OutputLayerNormWeights
const ConstTensorHandle * m_OutputLayerNormWeights
Definition: WorkloadData.hpp:604
armnn::InvalidArgumentException
Definition: Exceptions.hpp:80
armnn::QLstmQueueDescriptor::m_InputGateBias
const ConstTensorHandle * m_InputGateBias
Definition: WorkloadData.hpp:595
armnn::QLstmQueueDescriptor::m_OutputGateBias
const ConstTensorHandle * m_OutputGateBias
Definition: WorkloadData.hpp:598
armnn::QLstmQueueDescriptor::m_ForgetGateBias
const ConstTensorHandle * m_ForgetGateBias
Definition: WorkloadData.hpp:596
armnn::QLstmQueueDescriptor::m_RecurrentToInputWeights
const ConstTensorHandle * m_RecurrentToInputWeights
Definition: WorkloadData.hpp:588
armnn::DataType::Signed32
@ Signed32
armnn::QLstmQueueDescriptor::m_RecurrentToForgetWeights
const ConstTensorHandle * m_RecurrentToForgetWeights
Definition: WorkloadData.hpp:589
armnn::DataType::QAsymmS8
@ QAsymmS8
armnn::QLstmQueueDescriptor::m_InputToOutputWeights
const ConstTensorHandle * m_InputToOutputWeights
Definition: WorkloadData.hpp:587
armnn::QLstmDescriptor::m_HiddenStateZeroPoint
int32_t m_HiddenStateZeroPoint
Hidden State zero point.
Definition: Descriptors.hpp:1413
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:1397
armnn::QLstmDescriptor::m_HiddenStateScale
float m_HiddenStateScale
Hidden State quantization scale.
Definition: Descriptors.hpp:1415
armnn::QLstmQueueDescriptor::m_ProjectionBias
const ConstTensorHandle * m_ProjectionBias
Definition: WorkloadData.hpp:600
armnn::QLstmQueueDescriptor::m_CellToInputWeights
const ConstTensorHandle * m_CellToInputWeights
Definition: WorkloadData.hpp:592
armnn::QLstmDescriptor::m_LayerNormEnabled
bool m_LayerNormEnabled
Enable/disable layer normalization.
Definition: Descriptors.hpp:1403
armnn::QLstmQueueDescriptor::m_CellBias
const ConstTensorHandle * m_CellBias
Definition: WorkloadData.hpp:597
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:586
armnn::QLstmDescriptor::m_PeepholeEnabled
bool m_PeepholeEnabled
Enable/disable peephole.
Definition: Descriptors.hpp:1399
armnn::QLstmQueueDescriptor::m_CellLayerNormWeights
const ConstTensorHandle * m_CellLayerNormWeights
Definition: WorkloadData.hpp:603
armnn::QLstmQueueDescriptor::m_RecurrentToCellWeights
const ConstTensorHandle * m_RecurrentToCellWeights
Definition: WorkloadData.hpp:590