ArmNN
 20.11
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 QueueDescriptor
void ValidateInputsOutputs (const std::string &descName, unsigned int numExpectedIn, unsigned int numExpectedOut) const
 
template<typename T >
const T * GetAdditionalInformation () const
 

Public Attributes

const ConstCpuTensorHandlem_InputToInputWeights
 
const ConstCpuTensorHandlem_InputToForgetWeights
 
const ConstCpuTensorHandlem_InputToCellWeights
 
const ConstCpuTensorHandlem_InputToOutputWeights
 
const ConstCpuTensorHandlem_RecurrentToInputWeights
 
const ConstCpuTensorHandlem_RecurrentToForgetWeights
 
const ConstCpuTensorHandlem_RecurrentToCellWeights
 
const ConstCpuTensorHandlem_RecurrentToOutputWeights
 
const ConstCpuTensorHandlem_CellToInputWeights
 
const ConstCpuTensorHandlem_CellToForgetWeights
 
const ConstCpuTensorHandlem_CellToOutputWeights
 
const ConstCpuTensorHandlem_InputGateBias
 
const ConstCpuTensorHandlem_ForgetGateBias
 
const ConstCpuTensorHandlem_CellBias
 
const ConstCpuTensorHandlem_OutputGateBias
 
const ConstCpuTensorHandlem_ProjectionWeights
 
const ConstCpuTensorHandlem_ProjectionBias
 
const ConstCpuTensorHandlem_InputLayerNormWeights
 
const ConstCpuTensorHandlem_ForgetLayerNormWeights
 
const ConstCpuTensorHandlem_CellLayerNormWeights
 
const ConstCpuTensorHandlem_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
 

Additional Inherited Members

- Protected Member Functions inherited from QueueDescriptorWithParameters< QLstmDescriptor >
 ~QueueDescriptorWithParameters ()=default
 
 QueueDescriptorWithParameters ()=default
 
 QueueDescriptorWithParameters (QueueDescriptorWithParameters const &)=default
 
QueueDescriptorWithParametersoperator= (QueueDescriptorWithParameters const &)=default
 
- Protected Member Functions inherited from QueueDescriptor
 ~QueueDescriptor ()=default
 
 QueueDescriptor ()
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 

Detailed Description

Definition at line 552 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ QLstmQueueDescriptor()

Definition at line 554 of file WorkloadData.hpp.

555  : m_InputToInputWeights(nullptr)
556  , m_InputToForgetWeights(nullptr)
557  , m_InputToCellWeights(nullptr)
558  , m_InputToOutputWeights(nullptr)
559  , m_RecurrentToInputWeights(nullptr)
560  , m_RecurrentToForgetWeights(nullptr)
561  , m_RecurrentToCellWeights(nullptr)
562  , m_RecurrentToOutputWeights(nullptr)
563  , m_CellToInputWeights(nullptr)
564  , m_CellToForgetWeights(nullptr)
565  , m_CellToOutputWeights(nullptr)
566  , m_InputGateBias(nullptr)
567  , m_ForgetGateBias(nullptr)
568  , m_CellBias(nullptr)
569  , m_OutputGateBias(nullptr)
570  , m_ProjectionWeights(nullptr)
571  , m_ProjectionBias(nullptr)
572  , m_InputLayerNormWeights(nullptr)
573  , m_ForgetLayerNormWeights(nullptr)
574  , m_CellLayerNormWeights(nullptr)
575  , m_OutputLayerNormWeights(nullptr)
576  {
577  }
const ConstCpuTensorHandle * m_CellToForgetWeights
const ConstCpuTensorHandle * m_ProjectionWeights
const ConstCpuTensorHandle * m_ProjectionBias
const ConstCpuTensorHandle * m_ForgetLayerNormWeights
const ConstCpuTensorHandle * m_CellLayerNormWeights
const ConstCpuTensorHandle * m_RecurrentToCellWeights
const ConstCpuTensorHandle * m_RecurrentToInputWeights
const ConstCpuTensorHandle * m_OutputGateBias
const ConstCpuTensorHandle * m_CellBias
const ConstCpuTensorHandle * m_CellToOutputWeights
const ConstCpuTensorHandle * m_OutputLayerNormWeights
const ConstCpuTensorHandle * m_InputToForgetWeights
const ConstCpuTensorHandle * m_CellToInputWeights
const ConstCpuTensorHandle * m_RecurrentToOutputWeights
const ConstCpuTensorHandle * m_InputGateBias
const ConstCpuTensorHandle * m_InputLayerNormWeights
const ConstCpuTensorHandle * m_RecurrentToForgetWeights
const ConstCpuTensorHandle * m_ForgetGateBias
const ConstCpuTensorHandle * m_InputToOutputWeights
const ConstCpuTensorHandle * m_InputToInputWeights
const ConstCpuTensorHandle * m_InputToCellWeights

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 2900 of file WorkloadData.cpp.

References WorkloadInfo::m_InputTensorInfos, WorkloadInfo::m_OutputTensorInfos, armnn::QAsymmS8, armnn::QSymmS16, armnn::QSymmS8, and armnn::Signed32.

2901 {
2902  const std::string descriptorName{"QLstmQueueDescriptor"};
2903 
2904  // Validate number of inputs/outputs
2905  ValidateNumInputs(workloadInfo, descriptorName, 3);
2906  ValidateNumOutputs(workloadInfo, descriptorName, 3);
2907 
2908  // Input/output tensor info
2909  auto inputInfo = workloadInfo.m_InputTensorInfos[0];
2910  auto outputStateInInfo = workloadInfo.m_InputTensorInfos[1];
2911  auto cellStateInInfo = workloadInfo.m_InputTensorInfos[2];
2912 
2913  auto outputStateOutInfo = workloadInfo.m_OutputTensorInfos[0];
2914  auto cellStateOutInfo = workloadInfo.m_OutputTensorInfos[1];
2915  auto outputInfo = workloadInfo.m_OutputTensorInfos[2];
2916 
2917  // Supported types for various tensors in QLSTM
2918  std::vector<DataType> inputOutputSupportedTypes =
2919  {
2921  };
2922 
2923  std::vector<DataType> cellStateSupportedTypes =
2924  {
2926  };
2927 
2928  std::vector<DataType> weightsSupportedTypes =
2929  {
2931  };
2932 
2933  std::vector<DataType> layerNormPeepholeWeightsSupportedTypes =
2934  {
2936  };
2937 
2938  std::vector<DataType> biasSupportedTypes =
2939  {
2941  };
2942 
2943  // Validate types of input/output tensors
2944  ValidateDataTypes(inputInfo, inputOutputSupportedTypes, descriptorName);
2945  ValidateDataTypes(outputStateInInfo, inputOutputSupportedTypes, descriptorName);
2946  ValidateDataTypes(cellStateInInfo, cellStateSupportedTypes, descriptorName);
2947 
2948  ValidateDataTypes(outputStateOutInfo, inputOutputSupportedTypes, descriptorName);
2949  ValidateDataTypes(cellStateOutInfo, cellStateSupportedTypes, descriptorName);
2950  ValidateDataTypes(outputInfo, inputOutputSupportedTypes, descriptorName);
2951 
2952  // Validate matching types of input/output tensors
2953  ValidateTensorDataTypesMatch(inputInfo, outputStateInInfo, descriptorName, "input", "outputStateIn");
2954  ValidateTensorDataTypesMatch(outputStateInInfo, outputStateOutInfo, descriptorName,
2955  "outputStateIn", "outputStateOut");
2956  ValidateTensorDataTypesMatch(cellStateInInfo, cellStateOutInfo, descriptorName, "cellStateIn", "cellStateOut");
2957 
2958  // Infer number of batches, number of units, input size and output size from tensor dimensions
2959  const uint32_t numBatches = inputInfo.GetShape()[0];
2960  const uint32_t inputSize = inputInfo.GetShape()[1];
2961  const uint32_t outputSize = outputStateInInfo.GetShape()[1];
2962  const uint32_t numUnits = cellStateInInfo.GetShape()[1];
2963 
2964  // Validate number of dimensions and number of elements for input/output tensors
2965  ValidateTensorNumDimNumElem(inputInfo, 2, (numBatches * inputSize), descriptorName + " input");
2966  ValidateTensorNumDimNumElem(outputStateInInfo, 2, (numBatches * outputSize), descriptorName + " outputStateIn");
2967  ValidateTensorNumDimNumElem(cellStateInInfo, 2, (numBatches * numUnits), descriptorName + " cellStateIn");
2968 
2969  ValidateTensorNumDimNumElem(outputStateOutInfo, 2, (numBatches * outputSize), descriptorName + " outputStateOut");
2970  ValidateTensorNumDimNumElem(cellStateOutInfo, 2, (numBatches * numUnits), descriptorName + " cellStateOut");
2971  ValidateTensorNumDimNumElem(outputInfo, 2, (numBatches * outputSize), descriptorName + " output");
2972 
2973  // Validate number of dimensions and number of elements for MANDATORY weight tensors
2974  ValidatePointer(m_InputToForgetWeights, descriptorName, "InputToForgetWeights");
2975  auto inputToForgetWeightsInfo = m_InputToForgetWeights->GetTensorInfo();
2976  ValidateTensorNumDimNumElem(inputToForgetWeightsInfo, 2, (numUnits * inputSize), " InputToForgetWeights");
2977 
2978  ValidatePointer(m_InputToCellWeights, descriptorName, "InputToCellWeights");
2979  auto inputToCellWeightsInfo = m_InputToCellWeights->GetTensorInfo();
2980  ValidateTensorNumDimNumElem(inputToCellWeightsInfo, 2, (numUnits * inputSize), " InputToCellWeights");
2981 
2982  ValidatePointer(m_InputToOutputWeights, descriptorName, "InputToOutputWeights");
2983  auto inputToOutputWeightsInfo = m_InputToOutputWeights->GetTensorInfo();
2984  ValidateTensorNumDimNumElem(inputToOutputWeightsInfo, 2, (numUnits * inputSize), " InputToOutputWeights");
2985 
2986  ValidatePointer(m_RecurrentToForgetWeights, descriptorName, "RecurrentToForgetWeights");
2987  auto recurrentToForgetWeightsInfo = m_RecurrentToForgetWeights->GetTensorInfo();
2988  ValidateTensorNumDimNumElem(recurrentToForgetWeightsInfo, 2, (numUnits * outputSize),
2989  " RecurrentToForgetWeights");
2990 
2991  ValidatePointer(m_RecurrentToCellWeights, descriptorName, "RecurrentToCellWeights");
2992  auto recurrentToCellWeightsInfo = m_RecurrentToCellWeights->GetTensorInfo();
2993  ValidateTensorNumDimNumElem(recurrentToCellWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
2994 
2995  ValidatePointer(m_RecurrentToOutputWeights, descriptorName, "RecurrentToOutputWeights");
2996  auto recurrentToOutputWeightsInfo = m_RecurrentToOutputWeights->GetTensorInfo();
2997  ValidateTensorNumDimNumElem(recurrentToOutputWeightsInfo, 2, (numUnits * outputSize), " RecurrentToCellWeights");
2998 
2999  // Validate data types for MANDATORY weights tensors (all should match each other)
3000  ValidateDataTypes(inputToForgetWeightsInfo, weightsSupportedTypes, descriptorName);
3001 
3002  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToCellWeightsInfo, descriptorName,
3003  "inputToForgetWeights", "inputToCellWeights");
3004  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToOutputWeightsInfo, descriptorName,
3005  "inputToForgetWeights", "inputToOutputWeights");
3006 
3007  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToForgetWeightsInfo, descriptorName,
3008  "inputToForgetWeights", "recurrentToForgeteights");
3009  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToCellWeightsInfo, descriptorName,
3010  "inputToForgetWeights", "recurrentToCellWeights");
3011  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToOutputWeightsInfo, descriptorName,
3012  "inputToForgetWeights", "recurrentToOutputWeights");
3013 
3014  // Validate number of dimensions and number of elements for MANDATORY bias tensors
3015  ValidatePointer(m_ForgetGateBias, descriptorName, "ForgetGateBias");
3016  auto forgetGateBiasInfo = m_ForgetGateBias->GetTensorInfo();
3017  ValidateTensorNumDimNumElem(forgetGateBiasInfo, 1, numUnits, " ForgetGateBias");
3018 
3019  ValidatePointer(m_CellBias, descriptorName, "CellBias");
3020  auto cellBiasInfo = m_CellBias->GetTensorInfo();
3021  ValidateTensorNumDimNumElem(cellBiasInfo, 1, numUnits, " CellBias");
3022 
3023  ValidatePointer(m_OutputGateBias, descriptorName, "OutputGateBias");
3024  auto outputGateBiasInfo = m_OutputGateBias->GetTensorInfo();
3025  ValidateTensorNumDimNumElem(outputGateBiasInfo, 1, numUnits, " OutputGateBias");
3026 
3027  // Validate data types for MANDATORY bias tensors
3028  ValidateDataTypes(forgetGateBiasInfo, biasSupportedTypes, descriptorName);
3029 
3030  ValidateTensorDataTypesMatch(forgetGateBiasInfo, cellBiasInfo, descriptorName,
3031  "forgetGateBias", "cellBias");
3032  ValidateTensorDataTypesMatch(forgetGateBiasInfo, outputGateBiasInfo, descriptorName,
3033  "forgetGateBias", "outputGateBias");
3034 
3035  // Validate OPTIONAL params: CIFG (inputToInputWeights, recurrentToInputWeights, inputGateBias)
3036  const bool allCifgParamsPresentOrNot = ((m_InputToInputWeights && m_RecurrentToInputWeights && m_InputGateBias &&
3040 
3041  if (!allCifgParamsPresentOrNot)
3042  {
3043  throw InvalidArgumentException(descriptorName +
3044  ": InputToInputWeights, RecurrentToInputWeights and InputGateBias must either all be present "
3045  "(CIFG disabled) or not be present at all (CIFG enabled). m_Parameters.m_CifgEnabled should be "
3046  "set appropriately.");
3047  }
3048 
3050  {
3051  // Validate number of dimensions and number of elements
3052  auto inputToInputWeightsInfo = m_InputToInputWeights->GetTensorInfo();
3053  ValidateTensorNumDimNumElem(inputToInputWeightsInfo, 2, (numUnits * inputSize), " InputToInputWeights");
3054 
3055  auto recurrentToInputWeightsInfo = m_RecurrentToInputWeights->GetTensorInfo();
3056  ValidateTensorNumDimNumElem(recurrentToInputWeightsInfo, 2, (numUnits * outputSize),
3057  " RecurrentToInputWeights");
3058 
3059  auto inputGateBiasInfo = m_InputGateBias->GetTensorInfo();
3060  ValidateTensorNumDimNumElem(inputGateBiasInfo, 1, numUnits, " InputGateBias");
3061 
3062  // Validate data types
3063  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, inputToInputWeightsInfo, descriptorName,
3064  "inputToForgetWeights", "inputToInputWeights");
3065  ValidateTensorDataTypesMatch(inputToForgetWeightsInfo, recurrentToInputWeightsInfo, descriptorName,
3066  "inputToForgetWeights", "recurrentToInputWeights");
3067  ValidateTensorDataTypesMatch(forgetGateBiasInfo, inputGateBiasInfo, descriptorName,
3068  "forgetGateBias", "inputGateBias");
3069  }
3070 
3071  // Validate OPTIONAL params: Peephole (cellToInputWeights, cellToForgetWeights, cellToOutputWeights)
3072  bool allPeepholeWeightsPresentOrNot =
3077 
3078  if (!allPeepholeWeightsPresentOrNot)
3079  {
3080  throw InvalidArgumentException(descriptorName +
3081  ": CellToInputWeights, CellToForgetWeights and CellToOutputWeights should all be present (Peephole "
3082  "enabled) or not be present at all (Peephole disabled). CellToInputWeights should only be present "
3083  "when Peephole is enabled and CIFG is disabled. m_Parameters.m_PeepholeEnabled should be set "
3084  "appropriately.");
3085  }
3086 
3088  {
3089  auto cellToForgetWeightsInfo = m_CellToForgetWeights->GetTensorInfo();
3090  ValidateTensorNumDimNumElem(cellToForgetWeightsInfo, 1, numUnits, " cellToForgetWeights");
3091  ValidateDataTypes(cellToForgetWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3092 
3093  auto cellToOutputWeightsInfo = m_CellToOutputWeights->GetTensorInfo();
3094  ValidateTensorNumDimNumElem(cellToOutputWeightsInfo, 1, numUnits, " cellToOutputWeights");
3095  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToOutputWeightsInfo, descriptorName,
3096  "cellToForgetWeight", "cellToOutputWeights");
3097 
3099  {
3100  auto cellToInputWeightsInfo = m_CellToInputWeights->GetTensorInfo();
3101  ValidateTensorNumDimNumElem(cellToInputWeightsInfo, 1, numUnits, " cellToInputWeights");
3102  ValidateTensorDataTypesMatch(cellToForgetWeightsInfo, cellToInputWeightsInfo, descriptorName,
3103  "cellToForgetWeights", "cellToInputWeights");
3104  }
3105  }
3106 
3107  // Validate OPTIONAL params: Layer Norm Weights
3108  bool allLayerNormWeightsPresentOrNot =
3113 
3114  if (!allLayerNormWeightsPresentOrNot)
3115  {
3116  throw InvalidArgumentException(descriptorName +
3117  ": InputLayerNormWeights, ForgetLayerNormWeights, m_OutputLayerNormWeights "
3118  "and CellLayerNormWeights should all be present (Layer Norm enabled) or not "
3119  "be present at all (Layer Norm disabled). InputLayerNormWeights should "
3120  "only be present when Layer Norm is enabled and CIFG is disabled. "
3121  "m_Parameters.m_LayerNormEnabled should be set appropriately.");
3122  }
3123 
3125  {
3126  auto forgetLayerNormWeightsInfo = m_ForgetLayerNormWeights->GetTensorInfo();
3127  ValidateTensorNumDimNumElem(forgetLayerNormWeightsInfo, 1, numUnits, " forgetLayerNormWeights");
3128  ValidateDataTypes(forgetLayerNormWeightsInfo, layerNormPeepholeWeightsSupportedTypes, descriptorName);
3129 
3130  auto cellLayerNormWeightsInfo = m_CellLayerNormWeights->GetTensorInfo();
3131  ValidateTensorNumDimNumElem(cellLayerNormWeightsInfo, 1, numUnits, " cellLayerNormWeights");
3132  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, cellLayerNormWeightsInfo, descriptorName,
3133  "forgetLayerNormWeights", "cellLayerNormWeights");
3134 
3135  auto outputLayerNormWeightsInfo = m_OutputLayerNormWeights->GetTensorInfo();
3136  ValidateTensorNumDimNumElem(outputLayerNormWeightsInfo, 1, numUnits, " outputLayerNormWeights");
3137  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, outputLayerNormWeightsInfo, descriptorName,
3138  "forgetLayerNormWeights", "outputLayerNormWeights");
3139 
3141  {
3142  auto inputLayerNormWeightsInfo = m_InputLayerNormWeights->GetTensorInfo();
3143  ValidateTensorNumDimNumElem(inputLayerNormWeightsInfo, 1, numUnits, " inputLayerNormWeights");
3144  ValidateTensorDataTypesMatch(forgetLayerNormWeightsInfo, inputLayerNormWeightsInfo, descriptorName,
3145  "forgetLayerNormWeights", "inputLayerNormWeights");
3146  }
3147  }
3148 
3149  // Validate OPTIONAL params: Projection (projectionWeights, projectionBias)
3150  bool correctProjectionTensorsPresent =
3154 
3155  if (!correctProjectionTensorsPresent)
3156  {
3157  throw InvalidArgumentException(descriptorName +
3158  ": If projection is enabled, ProjectionWeights should be present and "
3159  "ProjectionBias is optional. If projection is disabled, neither "
3160  "ProjectionWeights nor ProjectionBias should be present.");
3161  }
3162 
3164  {
3165  auto projectionWeightsInfo = m_ProjectionWeights->GetTensorInfo();
3166  ValidateTensorNumDimNumElem(projectionWeightsInfo, 2, (numUnits * outputSize), "ProjectionWeights");
3167  ValidateDataTypes(projectionWeightsInfo, weightsSupportedTypes, descriptorName);
3168 
3169  if (m_ProjectionBias)
3170  {
3171  auto projectionBiasInfo = m_ProjectionBias->GetTensorInfo();
3172  ValidateTensorNumDimNumElem(projectionBiasInfo, 1, outputSize, "ProjectionBias");
3173  ValidateDataTypes(projectionBiasInfo, biasSupportedTypes, descriptorName);
3174  }
3175 
3176  }
3177  else if ((outputInfo.GetQuantizationScale() != m_Parameters.m_HiddenStateScale) &&
3178  outputInfo.GetQuantizationOffset() != m_Parameters.m_HiddenStateZeroPoint) {
3179  throw InvalidArgumentException(descriptorName +
3180  ": If projection is disabled, output quantization info (scale, offset) "
3181  "should match HiddenStateScale and HiddenStateZeroPoint.");
3182  }
3183 
3184 }
const ConstCpuTensorHandle * m_CellToForgetWeights
const ConstCpuTensorHandle * m_ProjectionWeights
bool m_PeepholeEnabled
Enable/disable peephole.
const ConstCpuTensorHandle * m_ProjectionBias
float m_HiddenStateScale
Hidden State quantization scale.
const ConstCpuTensorHandle * m_ForgetLayerNormWeights
const ConstCpuTensorHandle * m_CellLayerNormWeights
const ConstCpuTensorHandle * m_RecurrentToCellWeights
const ConstCpuTensorHandle * m_RecurrentToInputWeights
const ConstCpuTensorHandle * m_OutputGateBias
const ConstCpuTensorHandle * m_CellBias
const ConstCpuTensorHandle * m_CellToOutputWeights
const ConstCpuTensorHandle * m_OutputLayerNormWeights
std::vector< TensorInfo > m_InputTensorInfos
bool m_LayerNormEnabled
Enable/disable layer normalization.
const ConstCpuTensorHandle * m_InputToForgetWeights
std::vector< TensorInfo > m_OutputTensorInfos
const ConstCpuTensorHandle * m_CellToInputWeights
const ConstCpuTensorHandle * m_RecurrentToOutputWeights
bool m_ProjectionEnabled
Enable/disable the projection layer.
const ConstCpuTensorHandle * m_InputGateBias
const ConstCpuTensorHandle * m_InputLayerNormWeights
const ConstCpuTensorHandle * m_RecurrentToForgetWeights
const ConstCpuTensorHandle * m_ForgetGateBias
const ConstCpuTensorHandle * m_InputToOutputWeights
bool m_CifgEnabled
Enable/disable CIFG (coupled input & forget gate).
const TensorInfo & GetTensorInfo() const
const ConstCpuTensorHandle * m_InputToInputWeights
int32_t m_HiddenStateZeroPoint
Hidden State zero point.
const ConstCpuTensorHandle * m_InputToCellWeights

Member Data Documentation

◆ m_CellBias

const ConstCpuTensorHandle* m_CellBias

Definition at line 592 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_CellLayerNormWeights

const ConstCpuTensorHandle* m_CellLayerNormWeights

Definition at line 598 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_CellToForgetWeights

const ConstCpuTensorHandle* m_CellToForgetWeights

Definition at line 588 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_CellToInputWeights

const ConstCpuTensorHandle* m_CellToInputWeights

Definition at line 587 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_CellToOutputWeights

const ConstCpuTensorHandle* m_CellToOutputWeights

Definition at line 589 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_ForgetGateBias

const ConstCpuTensorHandle* m_ForgetGateBias

Definition at line 591 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_ForgetLayerNormWeights

const ConstCpuTensorHandle* m_ForgetLayerNormWeights

Definition at line 597 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputGateBias

const ConstCpuTensorHandle* m_InputGateBias

Definition at line 590 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputLayerNormWeights

const ConstCpuTensorHandle* m_InputLayerNormWeights

Definition at line 596 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputToCellWeights

const ConstCpuTensorHandle* m_InputToCellWeights

Definition at line 581 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputToForgetWeights

const ConstCpuTensorHandle* m_InputToForgetWeights

Definition at line 580 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputToInputWeights

const ConstCpuTensorHandle* m_InputToInputWeights

Definition at line 579 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_InputToOutputWeights

const ConstCpuTensorHandle* m_InputToOutputWeights

Definition at line 582 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_OutputGateBias

const ConstCpuTensorHandle* m_OutputGateBias

Definition at line 593 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_OutputLayerNormWeights

const ConstCpuTensorHandle* m_OutputLayerNormWeights

Definition at line 599 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_ProjectionBias

const ConstCpuTensorHandle* m_ProjectionBias

Definition at line 595 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_ProjectionWeights

const ConstCpuTensorHandle* m_ProjectionWeights

Definition at line 594 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_RecurrentToCellWeights

const ConstCpuTensorHandle* m_RecurrentToCellWeights

Definition at line 585 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_RecurrentToForgetWeights

const ConstCpuTensorHandle* m_RecurrentToForgetWeights

Definition at line 584 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_RecurrentToInputWeights

const ConstCpuTensorHandle* m_RecurrentToInputWeights

Definition at line 583 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().

◆ m_RecurrentToOutputWeights

const ConstCpuTensorHandle* m_RecurrentToOutputWeights

Definition at line 586 of file WorkloadData.hpp.

Referenced by QLstmLayer::CreateWorkload().


The documentation for this struct was generated from the following files: