ArmNN
 20.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
 

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 358 of file WorkloadData.hpp.

Constructor & Destructor Documentation

◆ LstmQueueDescriptor()

LstmQueueDescriptor ( )
inline

Definition at line 360 of file WorkloadData.hpp.

361  : m_InputToInputWeights(nullptr)
362  , m_InputToForgetWeights(nullptr)
363  , m_InputToCellWeights(nullptr)
364  , m_InputToOutputWeights(nullptr)
365  , m_RecurrentToInputWeights(nullptr)
366  , m_RecurrentToForgetWeights(nullptr)
367  , m_RecurrentToCellWeights(nullptr)
368  , m_RecurrentToOutputWeights(nullptr)
369  , m_CellToInputWeights(nullptr)
370  , m_CellToForgetWeights(nullptr)
371  , m_CellToOutputWeights(nullptr)
372  , m_InputGateBias(nullptr)
373  , m_ForgetGateBias(nullptr)
374  , m_CellBias(nullptr)
375  , m_OutputGateBias(nullptr)
376  , m_ProjectionWeights(nullptr)
377  , m_ProjectionBias(nullptr)
378  , m_InputLayerNormWeights(nullptr)
379  , m_ForgetLayerNormWeights(nullptr)
380  , m_CellLayerNormWeights(nullptr)
381  , m_OutputLayerNormWeights(nullptr)
382  {
383  }
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 1747 of file WorkloadData.cpp.

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

1748 {
1749  // ported from android/ml/nn/common/operations/LSTM.cpp CheckInputTensorDimensions()
1750 
1751  const std::string descriptorName{"LstmQueueDescriptor"};
1752 
1753  // check dimensions of all inputs and outputs
1754  if (workloadInfo.m_InputTensorInfos.size() != 3)
1755  {
1756  throw InvalidArgumentException(descriptorName + ": Invalid number of inputs.");
1757  }
1758  if (workloadInfo.m_OutputTensorInfos.size() != 4)
1759  {
1760  throw InvalidArgumentException(descriptorName + ": Invalid number of outputs.");
1761  }
1762 
1763  std::vector<DataType> supportedTypes =
1764  {
1769  };
1770 
1771  // check for supported type of one input and match them with all the other input and output
1772  ValidateDataTypes(workloadInfo.m_InputTensorInfos[0], supportedTypes, descriptorName);
1773 
1774  // type matches all other inputs
1775  for (uint32_t i = 1u; i < workloadInfo.m_InputTensorInfos.size(); ++i)
1776  {
1777  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1778  workloadInfo.m_InputTensorInfos[i],
1779  descriptorName,
1780  "input_0",
1781  "input_" + std::to_string(i));
1782  }
1783  // type matches all other outputs
1784  for (uint32_t i = 0u; i < workloadInfo.m_OutputTensorInfos.size(); ++i)
1785  {
1786  ValidateTensorDataTypesMatch(workloadInfo.m_InputTensorInfos[0],
1787  workloadInfo.m_OutputTensorInfos[i],
1788  "LstmQueueDescriptor",
1789  "input_0",
1790  "output_" + std::to_string(i));
1791  }
1792 
1793  // Making sure clipping parameters have valid values.
1794  // == 0 means no clipping
1795  // > 0 means clipping
1796  if (m_Parameters.m_ClippingThresCell < 0.0f)
1797  {
1798  throw InvalidArgumentException(descriptorName + ": negative cell clipping threshold is invalid");
1799  }
1800  if (m_Parameters.m_ClippingThresProj < 0.0f)
1801  {
1802  throw InvalidArgumentException(descriptorName + ": negative projection clipping threshold is invalid");
1803  }
1804 
1805 
1806  // Inferring batch size, number of outputs and number of cells from the inputs.
1807  const uint32_t n_input = workloadInfo.m_InputTensorInfos[0].GetShape()[1];
1808  const uint32_t n_batch = workloadInfo.m_InputTensorInfos[0].GetShape()[0];
1809  ValidatePointer(m_InputToOutputWeights, "Null pointer check", "InputToOutputWeights");
1810  const uint32_t n_cell = m_InputToOutputWeights->GetShape()[0];
1811  ValidatePointer(m_RecurrentToOutputWeights, "Null pointer check", "RecurrentToOutputWeights");
1812  const uint32_t n_output = m_RecurrentToOutputWeights->GetShape()[1];
1813 
1814  // input tensor
1815  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[0], 2, (n_batch * n_input),
1816  descriptorName + " input_0");
1817  // outputStateInTensor
1818  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[1], 2, (n_batch * n_output),
1819  descriptorName + " input_1");
1820  // outputStateInTensor
1821  ValidateTensorNumDimNumElem(workloadInfo.m_InputTensorInfos[2], 2, (n_batch * n_cell),
1822  descriptorName + " input_2");
1823  // scratchBufferTensor
1824  unsigned int scratchBufferSize = m_Parameters.m_CifgEnabled ? n_cell * 3 : n_cell * 4;
1825  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[0], 2, (n_batch * scratchBufferSize),
1826  descriptorName + " output_0");
1827  // outputStateOutTensor
1828  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[1], 2, (n_batch * n_output),
1829  descriptorName + " output_1");
1830  // cellStateOutTensor
1831  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[2], 2, (n_batch * n_cell),
1832  descriptorName + " output_2");
1833  // outputTensor
1834  ValidateTensorNumDimNumElem(workloadInfo.m_OutputTensorInfos[3], 2, (n_batch * n_output),
1835  descriptorName + " output_3");
1836 
1837 
1838  // check that dimensions of inputs/outputs and QueueDescriptor data match with each other
1839  if ( m_InputToInputWeights )
1840  {
1841  ValidateTensorNumDimNumElem(m_InputToInputWeights->GetTensorInfo(), 2,
1842  (n_cell * n_input), "InputLayerNormWeights");
1843  }
1844 
1845  ValidatePointer(m_InputToForgetWeights, "Null pointer check", "InputToForgetWeights");
1846  ValidateTensorNumDimNumElem(m_InputToForgetWeights->GetTensorInfo(), 2,
1847  (n_cell * n_input), "InputToForgetWeights");
1848 
1849  ValidatePointer(m_InputToCellWeights, "Null pointer check", "InputToCellWeights");
1850  ValidateTensorNumDimNumElem(m_InputToCellWeights->GetTensorInfo(), 2,
1851  (n_cell * n_input), "InputToCellWeights");
1852 
1854  {
1855  ValidateTensorNumDimNumElem(m_RecurrentToInputWeights->GetTensorInfo(), 2,
1856  (n_cell * n_output), "RecurrentToInputWeights");
1857  }
1858 
1859  ValidatePointer(m_RecurrentToForgetWeights, "Null pointer check", "RecurrentToForgetWeights");
1860  ValidateTensorNumDimNumElem(m_RecurrentToForgetWeights->GetTensorInfo(), 2,
1861  (n_cell * n_output), "RecurrentToForgetWeights");
1862 
1863  ValidatePointer(m_RecurrentToCellWeights, "Null pointer check", "RecurrentToCellWeights");
1864  ValidateTensorNumDimNumElem(m_RecurrentToCellWeights->GetTensorInfo(), 2,
1865  (n_cell * n_output), "RecurrentToCellWeights");
1866 
1867  // Make sure the input-gate's parameters are either both present (regular
1868  // LSTM) or not at all (CIFG-LSTM). And CifgEnable is set accordingly.
1869  bool cifg_weights_all_or_none = ((m_InputToInputWeights && m_RecurrentToInputWeights &&
1873  if (!cifg_weights_all_or_none)
1874  {
1875  throw InvalidArgumentException(descriptorName + ": Input-Gate's parameters InputToInputWeights and "
1876  "RecurrentToInputWeights must either both be present (regular LSTM) "
1877  "or both not present (CIFG-LSTM). In addition CifgEnable must be set "
1878  "accordingly.");
1879  }
1880 
1881  if ( m_CellToInputWeights )
1882  {
1883  ValidateTensorNumDimNumElem(m_CellToInputWeights->GetTensorInfo(), 1,
1884  n_cell, "CellToInputWeights");
1885  }
1886  if ( m_CellToForgetWeights )
1887  {
1888  ValidateTensorNumDimNumElem(m_CellToForgetWeights->GetTensorInfo(), 1,
1889  n_cell, "CellToForgetWeights");
1890  }
1891  if ( m_CellToOutputWeights )
1892  {
1893  ValidateTensorNumDimNumElem(m_CellToOutputWeights->GetTensorInfo(), 1,
1894  n_cell, "CellToOutputWeights");
1895  }
1896 
1897  // Making sure the peephole weights are there all or none. And PeepholeEnable is set accordingly.
1898  bool peephole_weights_all_or_none =
1903  if (!peephole_weights_all_or_none)
1904  {
1905  throw InvalidArgumentException(descriptorName + ": Invalid combination of peephole parameters.");
1906  }
1907 
1908  // Make sure the input gate bias is present only when not a CIFG-LSTM.
1910  {
1911  if (m_InputGateBias)
1912  {
1913  throw InvalidArgumentException(descriptorName + ": InputGateBias is present and CIFG-LSTM is enabled.");
1914  }
1915  }
1916  else
1917  {
1918  if (!m_InputGateBias)
1919  {
1920  throw InvalidArgumentException(descriptorName + ": If CIFG-LSTM is disabled InputGateBias "
1921  "must be present.");
1922  }
1923  ValidateTensorNumDimNumElem(m_InputGateBias->GetTensorInfo(), 1,
1924  n_cell, "InputGateBias");
1925  }
1926 
1927  ValidatePointer(m_ForgetGateBias, "Null pointer check", "ForgetGateBias");
1928  ValidateTensorNumDimNumElem(m_ForgetGateBias->GetTensorInfo(), 1, n_cell, "ForgetGateBias");
1929 
1930  ValidatePointer(m_CellBias, "Null pointer check", "CellBias");
1931  ValidateTensorNumDimNumElem(m_CellBias->GetTensorInfo(), 1, n_cell, "CellBias");
1932 
1933  ValidatePointer(m_OutputGateBias, "Null pointer check", "OutputGateBias");
1934  ValidateTensorNumDimNumElem(m_OutputGateBias->GetTensorInfo(), 1, n_cell, "OutputGateBias");
1935 
1936  if (m_ProjectionWeights)
1937  {
1938  ValidateTensorNumDimNumElem(m_ProjectionWeights->GetTensorInfo(), 2,
1939  (n_cell * n_output), "ProjectionWeights");
1940  }
1941  if (m_ProjectionBias)
1942  {
1943  ValidateTensorNumDimNumElem(m_ProjectionBias->GetTensorInfo(), 1, n_output, "ProjectionBias");
1944  }
1945 
1946  // Making sure the projection tensors are consistent:
1947  // 1) If projection weight is not present, then projection bias should not be
1948  // present.
1949  // 2) If projection weight is present, then projection bias is optional.
1950  bool projecton_tensors_consistent = ((!m_ProjectionWeights && !m_ProjectionBias &&
1956  if (!projecton_tensors_consistent)
1957  {
1958  throw InvalidArgumentException(descriptorName + ": Projection tensors are inconsistent.");
1959  }
1960 
1961  // The four layer normalization weights either all have values or none of them have values. Additionally, if
1962  // CIFG is used, input layer normalization weights tensor is omitted and the other layer normalization weights
1963  // either all have values or none of them have values. Layer normalization is used when the values of all the
1964  // layer normalization weights are present
1966  {
1967  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(), 1, n_cell, "InputLayerNormWeights");
1968  }
1970  {
1971  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
1972  }
1974  {
1975  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
1976  }
1978  {
1979  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
1980  }
1981 
1983  {
1985  {
1987  {
1988  throw InvalidArgumentException(descriptorName + ": Layer normalisation is enabled and CIFG-LSTM is "
1989  "disabled but InputLayerNormWeights are not present");
1990  }
1991  ValidateTensorNumDimNumElem(m_InputLayerNormWeights->GetTensorInfo(),
1992  1, n_cell, "InputLayerNormWeights");
1993  }
1994  else if (m_InputLayerNormWeights)
1995  {
1996  throw InvalidArgumentException(descriptorName + ":InputLayerNormWeights are present while CIFG is "
1997  "enabled");
1998  }
1999 
2000  ValidatePointer(m_ForgetLayerNormWeights, "Null pointer check layer normalisation enabled",
2001  "ForgetLayerNormWeights");
2002  ValidateTensorNumDimNumElem(m_ForgetLayerNormWeights->GetTensorInfo(), 1, n_cell, "ForgetLayerNormWeights");
2003 
2004  ValidatePointer(m_OutputLayerNormWeights, "Null pointer check layer normalisation enabled",
2005  "OutputLayerNormWeights");
2006  ValidateTensorNumDimNumElem(m_OutputLayerNormWeights->GetTensorInfo(), 1, n_cell, "OutputLayerNormWeights");
2007 
2008  ValidatePointer(m_CellLayerNormWeights, "Null pointer check layer normalisation enabled",
2009  "CellLayerNormWeights");
2010  ValidateTensorNumDimNumElem(m_CellLayerNormWeights->GetTensorInfo(), 1, n_cell, "CellLayerNormWeights");
2011  }
2013  {
2014  throw InvalidArgumentException(descriptorName + ": Layer normalisation is disabled but one or more layer "
2015  "normalisation weights are present.");
2016  }
2017 }
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 398 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellLayerNormWeights

const ConstCpuTensorHandle* m_CellLayerNormWeights

Definition at line 404 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToForgetWeights

const ConstCpuTensorHandle* m_CellToForgetWeights

Definition at line 394 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToInputWeights

const ConstCpuTensorHandle* m_CellToInputWeights

Definition at line 393 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_CellToOutputWeights

const ConstCpuTensorHandle* m_CellToOutputWeights

Definition at line 395 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetGateBias

const ConstCpuTensorHandle* m_ForgetGateBias

Definition at line 397 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ForgetLayerNormWeights

const ConstCpuTensorHandle* m_ForgetLayerNormWeights

Definition at line 403 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputGateBias

const ConstCpuTensorHandle* m_InputGateBias

Definition at line 396 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputLayerNormWeights

const ConstCpuTensorHandle* m_InputLayerNormWeights

Definition at line 402 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToCellWeights

const ConstCpuTensorHandle* m_InputToCellWeights

Definition at line 387 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToForgetWeights

const ConstCpuTensorHandle* m_InputToForgetWeights

Definition at line 386 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToInputWeights

const ConstCpuTensorHandle* m_InputToInputWeights

Definition at line 385 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_InputToOutputWeights

const ConstCpuTensorHandle* m_InputToOutputWeights

Definition at line 388 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputGateBias

const ConstCpuTensorHandle* m_OutputGateBias

Definition at line 399 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_OutputLayerNormWeights

const ConstCpuTensorHandle* m_OutputLayerNormWeights

Definition at line 405 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionBias

const ConstCpuTensorHandle* m_ProjectionBias

Definition at line 401 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_ProjectionWeights

const ConstCpuTensorHandle* m_ProjectionWeights

Definition at line 400 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToCellWeights

const ConstCpuTensorHandle* m_RecurrentToCellWeights

Definition at line 391 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToForgetWeights

const ConstCpuTensorHandle* m_RecurrentToForgetWeights

Definition at line 390 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToInputWeights

const ConstCpuTensorHandle* m_RecurrentToInputWeights

Definition at line 389 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().

◆ m_RecurrentToOutputWeights

const ConstCpuTensorHandle* m_RecurrentToOutputWeights

Definition at line 392 of file WorkloadData.hpp.

Referenced by LstmLayer::CreateWorkload().


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