Poplar and PopLibs
LstmDef.hpp
Go to the documentation of this file.
1// Copyright (c) 2017 Graphcore Ltd. All rights reserved.
6#ifndef popnn_LstmDef_hpp
7#define popnn_LstmDef_hpp
8
18 BASIC_LSTM_CELL_FORGET_GATE = 0,
19 BASIC_LSTM_CELL_INPUT_GATE = 1,
20 BASIC_LSTM_CELL_CANDIDATE = 2,
21 BASIC_LSTM_CELL_OUTPUT_GATE = 3,
22 BASIC_LSTM_CELL_NUM_UNITS = 4
23};
24
25#endif // popnn_LstmDef_hpp
BasicLstmCellUnit
The units within a basic LSTM cell.
Definition: LstmDef.hpp:17