ArmNN
 21.02
LstmQueueDescriptor Struct Reference

#include <WorkloadData.hpp>

Inheritance diagram for LstmQueueDescriptor:
QueueDescriptorWithParameters< LstmDescriptor > QueueDescriptor

Public Member Functions

 LstmQueueDescriptor ()
 
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< LstmDescriptor >
LstmDescriptor 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< LstmDescriptor >
 ~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 387 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ LstmQueueDescriptor()

LstmQueueDescriptor ( )
inline

Definition at line 389 of file WorkloadData.hpp.

390  : m_InputToInputWeights(nullptr)
391  , m_InputToForgetWeights(nullptr)
392  , m_InputToCellWeights(nullptr)
393  , m_InputToOutputWeights(nullptr)
394  , m_RecurrentToInputWeights(nullptr)
395  , m_RecurrentToForgetWeights(nullptr)
396  , m_RecurrentToCellWeights(nullptr)
397  , m_RecurrentToOutputWeights(nullptr)
398  , m_CellToInputWeights(nullptr)
399  , m_CellToForgetWeights(nullptr)
400  , m_CellToOutputWeights(nullptr)
401  , m_InputGateBias(nullptr)
402  , m_ForgetGateBias(nullptr)
403  , m_CellBias(nullptr)
404  , m_OutputGateBias(nullptr)
405  , m_ProjectionWeights(nullptr)
406  , m_ProjectionBias(nullptr)
407  , m_InputLayerNormWeights(nullptr)
408  , m_ForgetLayerNormWeights(nullptr)
409  , m_CellLayerNormWeights(nullptr)
410  , m_OutputLayerNormWeights(nullptr)
411  {
412  }
const ConstCpuTensorHandle * m_RecurrentToForgetWeights
const ConstCpuTensorHandle * m_CellToOutputWeights
const ConstCpuTensorHandle * m_InputToCellWeights
const ConstCpuTensorHandle * m_InputToOutputWeights
const ConstCpuTensorHandle * m_ProjectionBias
const ConstCpuTensorHandle * m_OutputGateBias
const ConstCpuTensorHandle * m_CellToInputWeights
const ConstCpuTensorHandle * m_CellLayerNormWeights
const ConstCpuTensorHandle * m_CellToForgetWeights
const ConstCpuTensorHandle * m_CellBias
const ConstCpuTensorHandle * m_RecurrentToInputWeights
const ConstCpuTensorHandle * m_InputLayerNormWeights
const ConstCpuTensorHandle * m_OutputLayerNormWeights
const ConstCpuTensorHandle * m_ForgetGateBias
const ConstCpuTensorHandle * m_InputToInputWeights
const ConstCpuTensorHandle * m_RecurrentToOutputWeights
const ConstCpuTensorHandle * m_ForgetLayerNormWeights
const ConstCpuTensorHandle * m_InputGateBias
const ConstCpuTensorHandle * m_RecurrentToCellWeights
const ConstCpuTensorHandle * m_ProjectionWeights
const ConstCpuTensorHandle * m_InputToForgetWeights

Member Function Documentation

◆ Validate()

void Validate ( const WorkloadInfo workloadInfo) const

Definition at line 1848 of file WorkloadData.cpp.

References armnn::BFloat16, armnn::Float16, armnn::Float32, WorkloadInfo::m_InputTensorInfos, WorkloadInfo::m_OutputTensorInfos, and armnn::QSymmS16.

1849 {
1850  // ported from android/ml/nn/common/operations/LSTM.cpp CheckInputTensorDimensions()
1851 
1852  const std::string descriptorName{"LstmQueueDescriptor"};
1853 
1854  // check dimensions of all inputs and outputs
1855  if (workloadInfo.m_InputTensorInfos.size() != 3)
1856  {
1857  throw InvalidArgumentException(descriptorName + ": Invalid number of inputs.");
1858  }
1859  if (workloadInfo.m_OutputTensorInfos.size() != 4)
1860  {
1861  throw InvalidArgumentException(descriptorName + ": Invalid number of outputs.");
1862  }
1863 
1864  std::vector<DataType> supportedTypes =
1865  {
1870  };
1871 
1872  // check for supported type of one input and match them with all the other input and output
1873  ValidateDataTypes(workloadInfo.m_InputTensorInfos[0], supportedTypes, descriptorName);
1874 
1875  // type matches all other inputs
1876  for (uint32_t i = 1u; i < workloadInfo.m_InputTensorInfos.size(); ++i)
1877  {
1878  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1879  workloadInfo.m_InputTensorInfos[i],
1880  descriptorName,
1881  "input_0",
1882  "input_" + std::to_string(i));
1883  }
1884  // type matches all other outputs
1885  for (uint32_t i = 0u; i < workloadInfo.m_OutputTensorInfos.size(); ++i)
1886  {
1887  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1888  workloadInfo.m_OutputTensorInfos[i],
1889  "LstmQueueDescriptor",
1890  "input_0",
1891  "output_" + std::to_string(i));
1892  }
1893 
1894  // Making sure clipping parameters have valid values.
1895  // == 0 means no clipping
1896  // > 0 means clipping
1897  if (m_Parameters.m_ClippingThresCell < 0.0f)
1898  {
1899  throw InvalidArgumentException(descriptorName + ": negative cell clipping threshold is invalid");
1900  }
1901  if (m_Parameters.m_ClippingThresProj < 0.0f)
1902  {
1903  throw InvalidArgumentException(descriptorName + ": negative projection clipping threshold is invalid");
1904  }
1905 
1906 
1907  // Inferring batch size, number of outputs and number of cells from the inputs.
1908  const uint32_t n_input = workloadInfo.m_InputTensorInfos[0].GetShape()[1];
1909  const uint32_t n_batch = workloadInfo.m_InputTensorInfos[0].GetShape()[0];
1910  ValidatePointer(m_InputToOutputWeights, "Null pointer check", "InputToOutputWeights");
1911  const uint32_t n_cell = m_InputToOutputWeights->GetShape()[0];
1912  ValidatePointer(m_RecurrentToOutputWeights, "Null pointer check", "RecurrentToOutputWeights");
1913  const uint32_t n_output = m_RecurrentToOutputWeights->GetShape()[1];
1914 
1915  // input tensor
1916  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[0], 2, (n_batch * n_input),
1917  descriptorName + " input_0");
1918  // outputStateInTensor
1919  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[1], 2, (n_batch * n_output),
1920  descriptorName + " input_1");
1921  // outputStateInTensor
1922  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[2], 2, (n_batch * n_cell),
1923  descriptorName + " input_2");
1924  // scratchBufferTensor
1925  unsigned int scratchBufferSize = m_Parameters.m_CifgEnabled ? n_cell * 3 : n_cell * 4;
1926  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[0], 2, (n_batch * scratchBufferSize),
1927  descriptorName + " output_0");
1928  // outputStateOutTensor
1929  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[1], 2, (n_batch * n_output),
1930  descriptorName + " output_1");
1931  // cellStateOutTensor
1932  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[2], 2, (n_batch * n_cell),
1933  descriptorName + " output_2");
1934  // outputTensor
1935  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[3], 2, (n_batch * n_output),
1936  descriptorName + " output_3");
1937 
1938 
1939  // check that dimensions of inputs/outputs and QueueDescriptor data match with each other
1940  if ( m_InputToInputWeights )
1941  {
1942  ValidateTensorNumDimNumElem(m_InputToInputWeights->GetTensorInfo(), 2,
1943  (n_cell * n_input), "InputLayerNormWeights");
1944  }
1945 
1946  ValidatePointer(m_InputToForgetWeights, "Null pointer check", "InputToForgetWeights");
1947  ValidateTensorNumDimNumElem(m_InputToForgetWeights->GetTensorInfo(), 2,
1948  (n_cell * n_input), "InputToForgetWeights");
1949 
1950  ValidatePointer(m_InputToCellWeights, "Null pointer check", "InputToCellWeights");
1951  ValidateTensorNumDimNumElem(m_InputToCellWeights->GetTensorInfo(), 2,
1952  (n_cell * n_input), "InputToCellWeights");
1953 
1955  {
1956  ValidateTensorNumDimNumElem(m_RecurrentToInputWeights->GetTensorInfo(), 2,
1957  (n_cell * n_output), "RecurrentToInputWeights");
1958  }
1959 
1960  ValidatePointer(m_RecurrentToForgetWeights, "Null pointer check", "RecurrentToForgetWeights");
1961  ValidateTensorNumDimNumElem(m_RecurrentToForgetWeights->GetTensorInfo(), 2,
1962  (n_cell * n_output), "RecurrentToForgetWeights");
1963 
1964  ValidatePointer(m_RecurrentToCellWeights, "Null pointer check", "RecurrentToCellWeights");
1965  ValidateTensorNumDimNumElem(m_RecurrentToCellWeights->GetTensorInfo(), 2,
1966  (n_cell * n_output), "RecurrentToCellWeights");
1967 
1968  // Make sure the input-gate's parameters are either both present (regular
1969  // LSTM) or not at all (CIFG-LSTM). And CifgEnable is set accordingly.
1970  bool cifg_weights_all_or_none = ((m_InputToInputWeights && m_RecurrentToInputWeights &&
1974  if (!cifg_weights_all_or_none)
1975  {
1976  throw InvalidArgumentException(descriptorName + ": Input-Gate's parameters InputToInputWeights and "
1977  "RecurrentToInputWeights must either both be present (regular LSTM) "
1978  "or both not present (CIFG-LSTM). In addition CifgEnable must be set "
1979  "accordingly.");
1980  }
1981 
1982  if ( m_CellToInputWeights )
1983  {
1984  ValidateTensorNumDimNumElem(m_CellToInputWeights->GetTensorInfo(), 1,
1985  n_cell, "CellToInputWeights");
1986  }
1987  if ( m_CellToForgetWeights )
1988  {
1989  ValidateTensorNumDimNumElem(m_CellToForgetWeights->GetTensorInfo(), 1,
1990  n_cell, "CellToForgetWeights");
1991  }
1992  if ( m_CellToOutputWeights )
1993  {
1994  ValidateTensorNumDimNumElem(m_CellToOutputWeights->GetTensorInfo(), 1,
1995  n_cell, "CellToOutputWeights");
1996  }
1997 
1998  // Making sure the peephole weights are there all or none. And PeepholeEnable is set accordingly.
1999  bool peephole_weights_all_or_none =
2004  if (!peephole_weights_all_or_none)
2005  {
2006  throw InvalidArgumentException(descriptorName + ": Invalid combination of peephole parameters.");
2007  }
2008 
2009  // Make sure the input gate bias is present only when not a CIFG-LSTM.
2011  {
2012  if (m_InputGateBias)
2013  {
2014  throw InvalidArgumentException(descriptorName + ": InputGateBias is present and CIFG-LSTM is enabled.");
2015  }
2016  }
2017  else
2018  {
2019  if (!m_InputGateBias)
2020  {
2021  throw InvalidArgumentException(descriptorName + ": If CIFG-LSTM is disabled InputGateBias "
2022  "must be present.");
2023  }
2024  ValidateTensorNumDimNumElem(m_InputGateBias->GetTensorInfo(), 1,
2025  n_cell, "InputGateBias");
2026  }
2027 
2028  ValidatePointer(m_ForgetGateBias, "Null pointer check", "ForgetGateBias");
2029  ValidateTensorNumDimNumElem(m_ForgetGateBias->GetTensorInfo(), 1, n_cell, "ForgetGateBias");
2030 
2031  ValidatePointer(m_CellBias, "Null pointer check", "CellBias");
2032  ValidateTensorNumDimNumElem(m_CellBias->GetTensorInfo(), 1, n_cell, "CellBias");
2033 
2034  ValidatePointer(m_OutputGateBias, "Null pointer check", "OutputGateBias");
2035  ValidateTensorNumDimNumElem(m_OutputGateBias->GetTensorInfo(), 1, n_cell, "OutputGateBias");
2036 
2037  if (m_ProjectionWeights)
2038  {
2039  ValidateTensorNumDimNumElem(m_ProjectionWeights->GetTensorInfo(), 2,
2040  (n_cell * n_output), "ProjectionWeights");
2041  }
2042  if (m_ProjectionBias)
2043  {
2044  ValidateTensorNumDimNumElem(m_ProjectionBias->GetTensorInfo(), 1, n_output, "ProjectionBias");
2045  }
2046 
2047  // Making sure the projection tensors are consistent:
2048  // 1) If projection weight is not present, then projection bias should not be
2049  // present.
2050  // 2) If projection weight is present, then projection bias is optional.
2051  bool projecton_tensors_consistent = ((!m_ProjectionWeights && !m_ProjectionBias &&
2057  if (!projecton_tensors_consistent)
2058  {
2059  throw InvalidArgumentException(descriptorName + ": Projection tensors are inconsistent.");
2060  }
2061 
2062  // The four layer normalization weights either all have values or none of them have values. Additionally, if
2063  // CIFG is used, input layer normalization weights tensor is omitted and the other layer normalization weights
2064  // either all have values or none of them have values. Layer normalization is used when the values of all the
2065  // layer normalization weights are present
2067  {
2068  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(), 1, n_cell, "InputLayerNormWeights");
2069  }
2071  {
2072  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
2073  }
2075  {
2076  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
2077  }
2079  {
2080  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
2081  }
2082 
2084  {
2086  {
2088  {
2089  throw InvalidArgumentException(descriptorName + ": Layer normalisation is enabled and CIFG-LSTM is "
2090  "disabled but InputLayerNormWeights are not present");
2091  }
2092  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(),
2093  1, n_cell, "InputLayerNormWeights");
2094  }
2095  else if (m_InputLayerNormWeights)
2096  {
2097  throw InvalidArgumentException(descriptorName + ":InputLayerNormWeights are present while CIFG is "
2098  "enabled");
2099  }
2100 
2101  ValidatePointer(m_ForgetLayerNormWeights, "Null pointer check layer normalisation enabled",
2102  "ForgetLayerNormWeights");
2103  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
2104 
2105  ValidatePointer(m_OutputLayerNormWeights, "Null pointer check layer normalisation enabled",
2106  "OutputLayerNormWeights");
2107  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
2108 
2109  ValidatePointer(m_CellLayerNormWeights, "Null pointer check layer normalisation enabled",
2110  "CellLayerNormWeights");
2111  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
2112  }
2114  {
2115  throw InvalidArgumentException(descriptorName + ": Layer normalisation is disabled but one or more layer "
2116  "normalisation weights are present.");
2117  }
2118 }
bool m_ProjectionEnabled
Enable/disable the projection layer.
float m_ClippingThresProj
Clipping threshold value for the projection.
const ConstCpuTensorHandle * m_RecurrentToForgetWeights
const ConstCpuTensorHandle * m_CellToOutputWeights
const ConstCpuTensorHandle * m_InputToCellWeights
const ConstCpuTensorHandle * m_InputToOutputWeights
const ConstCpuTensorHandle * m_ProjectionBias
const ConstCpuTensorHandle * m_OutputGateBias
const ConstCpuTensorHandle * m_CellToInputWeights
const ConstCpuTensorHandle * m_CellLayerNormWeights
const ConstCpuTensorHandle * m_CellToForgetWeights
const ConstCpuTensorHandle * m_CellBias
const ConstCpuTensorHandle * m_RecurrentToInputWeights
std::vector< TensorInfo > m_InputTensorInfos
const ConstCpuTensorHandle * m_InputLayerNormWeights
const ConstCpuTensorHandle * m_OutputLayerNormWeights
const ConstCpuTensorHandle * m_ForgetGateBias
TensorShape GetShape() const override
Get the number of elements for each dimension ordered from slowest iterating dimension to fastest ite...
const ConstCpuTensorHandle * m_InputToInputWeights
bool m_PeepholeEnabled
Enable/disable peephole.
std::vector< TensorInfo > m_OutputTensorInfos
float m_ClippingThresCell
Clipping threshold value for the cell state.
bool m_CifgEnabled
Enable/disable cifg (coupled input & forget gate).
const ConstCpuTensorHandle * m_RecurrentToOutputWeights
const ConstCpuTensorHandle * m_ForgetLayerNormWeights
const ConstCpuTensorHandle * m_InputGateBias
bool m_LayerNormEnabled
Enable/disable layer normalization.
const ConstCpuTensorHandle * m_RecurrentToCellWeights
const TensorInfo & GetTensorInfo() const
const ConstCpuTensorHandle * m_ProjectionWeights
const ConstCpuTensorHandle * m_InputToForgetWeights

Member Data Documentation

◆ m_CellBias

const ConstCpuTensorHandle* m_CellBias

Definition at line 427 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellLayerNormWeights

const ConstCpuTensorHandle* m_CellLayerNormWeights

Definition at line 433 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToForgetWeights

const ConstCpuTensorHandle* m_CellToForgetWeights

Definition at line 423 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToInputWeights

const ConstCpuTensorHandle* m_CellToInputWeights

Definition at line 422 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToOutputWeights

const ConstCpuTensorHandle* m_CellToOutputWeights

Definition at line 424 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetGateBias

const ConstCpuTensorHandle* m_ForgetGateBias

Definition at line 426 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetLayerNormWeights

const ConstCpuTensorHandle* m_ForgetLayerNormWeights

Definition at line 432 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputGateBias

const ConstCpuTensorHandle* m_InputGateBias

Definition at line 425 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputLayerNormWeights

const ConstCpuTensorHandle* m_InputLayerNormWeights

Definition at line 431 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToCellWeights

const ConstCpuTensorHandle* m_InputToCellWeights

Definition at line 416 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToForgetWeights

const ConstCpuTensorHandle* m_InputToForgetWeights

Definition at line 415 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToInputWeights

const ConstCpuTensorHandle* m_InputToInputWeights

Definition at line 414 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToOutputWeights

const ConstCpuTensorHandle* m_InputToOutputWeights

Definition at line 417 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputGateBias

const ConstCpuTensorHandle* m_OutputGateBias

Definition at line 428 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputLayerNormWeights

const ConstCpuTensorHandle* m_OutputLayerNormWeights

Definition at line 434 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionBias

const ConstCpuTensorHandle* m_ProjectionBias

Definition at line 430 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionWeights

const ConstCpuTensorHandle* m_ProjectionWeights

Definition at line 429 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToCellWeights

const ConstCpuTensorHandle* m_RecurrentToCellWeights

Definition at line 420 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToForgetWeights

const ConstCpuTensorHandle* m_RecurrentToForgetWeights

Definition at line 419 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToInputWeights

const ConstCpuTensorHandle* m_RecurrentToInputWeights

Definition at line 418 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToOutputWeights

const ConstCpuTensorHandle* m_RecurrentToOutputWeights

Definition at line 421 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().


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