ArmNN
 20.08
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
 

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
 

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 ()=default
 
 QueueDescriptor (QueueDescriptor const &)=default
 
QueueDescriptoroperator= (QueueDescriptor const &)=default
 

Detailed Description

Definition at line 369 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ LstmQueueDescriptor()

LstmQueueDescriptor ( )
inline

Definition at line 371 of file WorkloadData.hpp.

372  : m_InputToInputWeights(nullptr)
373  , m_InputToForgetWeights(nullptr)
374  , m_InputToCellWeights(nullptr)
375  , m_InputToOutputWeights(nullptr)
376  , m_RecurrentToInputWeights(nullptr)
377  , m_RecurrentToForgetWeights(nullptr)
378  , m_RecurrentToCellWeights(nullptr)
379  , m_RecurrentToOutputWeights(nullptr)
380  , m_CellToInputWeights(nullptr)
381  , m_CellToForgetWeights(nullptr)
382  , m_CellToOutputWeights(nullptr)
383  , m_InputGateBias(nullptr)
384  , m_ForgetGateBias(nullptr)
385  , m_CellBias(nullptr)
386  , m_OutputGateBias(nullptr)
387  , m_ProjectionWeights(nullptr)
388  , m_ProjectionBias(nullptr)
389  , m_InputLayerNormWeights(nullptr)
390  , m_ForgetLayerNormWeights(nullptr)
391  , m_CellLayerNormWeights(nullptr)
392  , m_OutputLayerNormWeights(nullptr)
393  {
394  }
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 1807 of file WorkloadData.cpp.

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

1808 {
1809  // ported from android/ml/nn/common/operations/LSTM.cpp CheckInputTensorDimensions()
1810 
1811  const std::string descriptorName{"LstmQueueDescriptor"};
1812 
1813  // check dimensions of all inputs and outputs
1814  if (workloadInfo.m_InputTensorInfos.size() != 3)
1815  {
1816  throw InvalidArgumentException(descriptorName + ": Invalid number of inputs.");
1817  }
1818  if (workloadInfo.m_OutputTensorInfos.size() != 4)
1819  {
1820  throw InvalidArgumentException(descriptorName + ": Invalid number of outputs.");
1821  }
1822 
1823  std::vector<DataType> supportedTypes =
1824  {
1829  };
1830 
1831  // check for supported type of one input and match them with all the other input and output
1832  ValidateDataTypes(workloadInfo.m_InputTensorInfos[0], supportedTypes, descriptorName);
1833 
1834  // type matches all other inputs
1835  for (uint32_t i = 1u; i < workloadInfo.m_InputTensorInfos.size(); ++i)
1836  {
1837  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1838  workloadInfo.m_InputTensorInfos[i],
1839  descriptorName,
1840  "input_0",
1841  "input_" + std::to_string(i));
1842  }
1843  // type matches all other outputs
1844  for (uint32_t i = 0u; i < workloadInfo.m_OutputTensorInfos.size(); ++i)
1845  {
1846  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1847  workloadInfo.m_OutputTensorInfos[i],
1848  "LstmQueueDescriptor",
1849  "input_0",
1850  "output_" + std::to_string(i));
1851  }
1852 
1853  // Making sure clipping parameters have valid values.
1854  // == 0 means no clipping
1855  // > 0 means clipping
1856  if (m_Parameters.m_ClippingThresCell < 0.0f)
1857  {
1858  throw InvalidArgumentException(descriptorName + ": negative cell clipping threshold is invalid");
1859  }
1860  if (m_Parameters.m_ClippingThresProj < 0.0f)
1861  {
1862  throw InvalidArgumentException(descriptorName + ": negative projection clipping threshold is invalid");
1863  }
1864 
1865 
1866  // Inferring batch size, number of outputs and number of cells from the inputs.
1867  const uint32_t n_input = workloadInfo.m_InputTensorInfos[0].GetShape()[1];
1868  const uint32_t n_batch = workloadInfo.m_InputTensorInfos[0].GetShape()[0];
1869  ValidatePointer(m_InputToOutputWeights, "Null pointer check", "InputToOutputWeights");
1870  const uint32_t n_cell = m_InputToOutputWeights->GetShape()[0];
1871  ValidatePointer(m_RecurrentToOutputWeights, "Null pointer check", "RecurrentToOutputWeights");
1872  const uint32_t n_output = m_RecurrentToOutputWeights->GetShape()[1];
1873 
1874  // input tensor
1875  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[0], 2, (n_batch * n_input),
1876  descriptorName + " input_0");
1877  // outputStateInTensor
1878  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[1], 2, (n_batch * n_output),
1879  descriptorName + " input_1");
1880  // outputStateInTensor
1881  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[2], 2, (n_batch * n_cell),
1882  descriptorName + " input_2");
1883  // scratchBufferTensor
1884  unsigned int scratchBufferSize = m_Parameters.m_CifgEnabled ? n_cell * 3 : n_cell * 4;
1885  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[0], 2, (n_batch * scratchBufferSize),
1886  descriptorName + " output_0");
1887  // outputStateOutTensor
1888  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[1], 2, (n_batch * n_output),
1889  descriptorName + " output_1");
1890  // cellStateOutTensor
1891  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[2], 2, (n_batch * n_cell),
1892  descriptorName + " output_2");
1893  // outputTensor
1894  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[3], 2, (n_batch * n_output),
1895  descriptorName + " output_3");
1896 
1897 
1898  // check that dimensions of inputs/outputs and QueueDescriptor data match with each other
1899  if ( m_InputToInputWeights )
1900  {
1901  ValidateTensorNumDimNumElem(m_InputToInputWeights->GetTensorInfo(), 2,
1902  (n_cell * n_input), "InputLayerNormWeights");
1903  }
1904 
1905  ValidatePointer(m_InputToForgetWeights, "Null pointer check", "InputToForgetWeights");
1906  ValidateTensorNumDimNumElem(m_InputToForgetWeights->GetTensorInfo(), 2,
1907  (n_cell * n_input), "InputToForgetWeights");
1908 
1909  ValidatePointer(m_InputToCellWeights, "Null pointer check", "InputToCellWeights");
1910  ValidateTensorNumDimNumElem(m_InputToCellWeights->GetTensorInfo(), 2,
1911  (n_cell * n_input), "InputToCellWeights");
1912 
1914  {
1915  ValidateTensorNumDimNumElem(m_RecurrentToInputWeights->GetTensorInfo(), 2,
1916  (n_cell * n_output), "RecurrentToInputWeights");
1917  }
1918 
1919  ValidatePointer(m_RecurrentToForgetWeights, "Null pointer check", "RecurrentToForgetWeights");
1920  ValidateTensorNumDimNumElem(m_RecurrentToForgetWeights->GetTensorInfo(), 2,
1921  (n_cell * n_output), "RecurrentToForgetWeights");
1922 
1923  ValidatePointer(m_RecurrentToCellWeights, "Null pointer check", "RecurrentToCellWeights");
1924  ValidateTensorNumDimNumElem(m_RecurrentToCellWeights->GetTensorInfo(), 2,
1925  (n_cell * n_output), "RecurrentToCellWeights");
1926 
1927  // Make sure the input-gate's parameters are either both present (regular
1928  // LSTM) or not at all (CIFG-LSTM). And CifgEnable is set accordingly.
1929  bool cifg_weights_all_or_none = ((m_InputToInputWeights && m_RecurrentToInputWeights &&
1933  if (!cifg_weights_all_or_none)
1934  {
1935  throw InvalidArgumentException(descriptorName + ": Input-Gate's parameters InputToInputWeights and "
1936  "RecurrentToInputWeights must either both be present (regular LSTM) "
1937  "or both not present (CIFG-LSTM). In addition CifgEnable must be set "
1938  "accordingly.");
1939  }
1940 
1941  if ( m_CellToInputWeights )
1942  {
1943  ValidateTensorNumDimNumElem(m_CellToInputWeights->GetTensorInfo(), 1,
1944  n_cell, "CellToInputWeights");
1945  }
1946  if ( m_CellToForgetWeights )
1947  {
1948  ValidateTensorNumDimNumElem(m_CellToForgetWeights->GetTensorInfo(), 1,
1949  n_cell, "CellToForgetWeights");
1950  }
1951  if ( m_CellToOutputWeights )
1952  {
1953  ValidateTensorNumDimNumElem(m_CellToOutputWeights->GetTensorInfo(), 1,
1954  n_cell, "CellToOutputWeights");
1955  }
1956 
1957  // Making sure the peephole weights are there all or none. And PeepholeEnable is set accordingly.
1958  bool peephole_weights_all_or_none =
1963  if (!peephole_weights_all_or_none)
1964  {
1965  throw InvalidArgumentException(descriptorName + ": Invalid combination of peephole parameters.");
1966  }
1967 
1968  // Make sure the input gate bias is present only when not a CIFG-LSTM.
1970  {
1971  if (m_InputGateBias)
1972  {
1973  throw InvalidArgumentException(descriptorName + ": InputGateBias is present and CIFG-LSTM is enabled.");
1974  }
1975  }
1976  else
1977  {
1978  if (!m_InputGateBias)
1979  {
1980  throw InvalidArgumentException(descriptorName + ": If CIFG-LSTM is disabled InputGateBias "
1981  "must be present.");
1982  }
1983  ValidateTensorNumDimNumElem(m_InputGateBias->GetTensorInfo(), 1,
1984  n_cell, "InputGateBias");
1985  }
1986 
1987  ValidatePointer(m_ForgetGateBias, "Null pointer check", "ForgetGateBias");
1988  ValidateTensorNumDimNumElem(m_ForgetGateBias->GetTensorInfo(), 1, n_cell, "ForgetGateBias");
1989 
1990  ValidatePointer(m_CellBias, "Null pointer check", "CellBias");
1991  ValidateTensorNumDimNumElem(m_CellBias->GetTensorInfo(), 1, n_cell, "CellBias");
1992 
1993  ValidatePointer(m_OutputGateBias, "Null pointer check", "OutputGateBias");
1994  ValidateTensorNumDimNumElem(m_OutputGateBias->GetTensorInfo(), 1, n_cell, "OutputGateBias");
1995 
1996  if (m_ProjectionWeights)
1997  {
1998  ValidateTensorNumDimNumElem(m_ProjectionWeights->GetTensorInfo(), 2,
1999  (n_cell * n_output), "ProjectionWeights");
2000  }
2001  if (m_ProjectionBias)
2002  {
2003  ValidateTensorNumDimNumElem(m_ProjectionBias->GetTensorInfo(), 1, n_output, "ProjectionBias");
2004  }
2005 
2006  // Making sure the projection tensors are consistent:
2007  // 1) If projection weight is not present, then projection bias should not be
2008  // present.
2009  // 2) If projection weight is present, then projection bias is optional.
2010  bool projecton_tensors_consistent = ((!m_ProjectionWeights && !m_ProjectionBias &&
2016  if (!projecton_tensors_consistent)
2017  {
2018  throw InvalidArgumentException(descriptorName + ": Projection tensors are inconsistent.");
2019  }
2020 
2021  // The four layer normalization weights either all have values or none of them have values. Additionally, if
2022  // CIFG is used, input layer normalization weights tensor is omitted and the other layer normalization weights
2023  // either all have values or none of them have values. Layer normalization is used when the values of all the
2024  // layer normalization weights are present
2026  {
2027  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(), 1, n_cell, "InputLayerNormWeights");
2028  }
2030  {
2031  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
2032  }
2034  {
2035  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
2036  }
2038  {
2039  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
2040  }
2041 
2043  {
2045  {
2047  {
2048  throw InvalidArgumentException(descriptorName + ": Layer normalisation is enabled and CIFG-LSTM is "
2049  "disabled but InputLayerNormWeights are not present");
2050  }
2051  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(),
2052  1, n_cell, "InputLayerNormWeights");
2053  }
2054  else if (m_InputLayerNormWeights)
2055  {
2056  throw InvalidArgumentException(descriptorName + ":InputLayerNormWeights are present while CIFG is "
2057  "enabled");
2058  }
2059 
2060  ValidatePointer(m_ForgetLayerNormWeights, "Null pointer check layer normalisation enabled",
2061  "ForgetLayerNormWeights");
2062  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
2063 
2064  ValidatePointer(m_OutputLayerNormWeights, "Null pointer check layer normalisation enabled",
2065  "OutputLayerNormWeights");
2066  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
2067 
2068  ValidatePointer(m_CellLayerNormWeights, "Null pointer check layer normalisation enabled",
2069  "CellLayerNormWeights");
2070  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
2071  }
2073  {
2074  throw InvalidArgumentException(descriptorName + ": Layer normalisation is disabled but one or more layer "
2075  "normalisation weights are present.");
2076  }
2077 }
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 409 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellLayerNormWeights

const ConstCpuTensorHandle* m_CellLayerNormWeights

Definition at line 415 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToForgetWeights

const ConstCpuTensorHandle* m_CellToForgetWeights

Definition at line 405 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToInputWeights

const ConstCpuTensorHandle* m_CellToInputWeights

Definition at line 404 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToOutputWeights

const ConstCpuTensorHandle* m_CellToOutputWeights

Definition at line 406 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetGateBias

const ConstCpuTensorHandle* m_ForgetGateBias

Definition at line 408 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetLayerNormWeights

const ConstCpuTensorHandle* m_ForgetLayerNormWeights

Definition at line 414 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputGateBias

const ConstCpuTensorHandle* m_InputGateBias

Definition at line 407 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputLayerNormWeights

const ConstCpuTensorHandle* m_InputLayerNormWeights

Definition at line 413 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToCellWeights

const ConstCpuTensorHandle* m_InputToCellWeights

Definition at line 398 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToForgetWeights

const ConstCpuTensorHandle* m_InputToForgetWeights

Definition at line 397 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToInputWeights

const ConstCpuTensorHandle* m_InputToInputWeights

Definition at line 396 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToOutputWeights

const ConstCpuTensorHandle* m_InputToOutputWeights

Definition at line 399 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputGateBias

const ConstCpuTensorHandle* m_OutputGateBias

Definition at line 410 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputLayerNormWeights

const ConstCpuTensorHandle* m_OutputLayerNormWeights

Definition at line 416 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionBias

const ConstCpuTensorHandle* m_ProjectionBias

Definition at line 412 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionWeights

const ConstCpuTensorHandle* m_ProjectionWeights

Definition at line 411 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToCellWeights

const ConstCpuTensorHandle* m_RecurrentToCellWeights

Definition at line 402 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToForgetWeights

const ConstCpuTensorHandle* m_RecurrentToForgetWeights

Definition at line 401 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToInputWeights

const ConstCpuTensorHandle* m_RecurrentToInputWeights

Definition at line 400 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToOutputWeights

const ConstCpuTensorHandle* m_RecurrentToOutputWeights

Definition at line 403 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().


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