ArmNN
 20.05
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 1782 of file WorkloadData.cpp.

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

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