Computes the LSTM cell backward propagation for 1 timestep.
tf.raw_ops.LSTMBlockCellGrad(
    x, cs_prev, h_prev, w, wci, wcf, wco, b, i, cs, f, o, ci, co, cs_grad, h_grad,
    use_peephole, name=None
)
This implementation is to be used in conjunction of LSTMBlockCell.
| Args | |
|---|---|
| x | A Tensor. Must be one of the following types:half,float32.
The input to the LSTM cell, shape (batch_size, num_inputs). | 
| cs_prev | A Tensor. Must have the same type asx.
The previous cell state. | 
| h_prev | A Tensor. Must have the same type asx. The previous h state. | 
| w | A Tensor. Must have the same type asx. The weight matrix. | 
| wci | A Tensor. Must have the same type asx.
The weight matrix for input gate peephole connection. | 
| wcf | A Tensor. Must have the same type asx.
The weight matrix for forget gate peephole connection. | 
| wco | A Tensor. Must have the same type asx.
The weight matrix for output gate peephole connection. | 
| b | A Tensor. Must have the same type asx. The bias vector. | 
| i | A Tensor. Must have the same type asx. The input gate. | 
| cs | A Tensor. Must have the same type asx.
The cell state before the tanh. | 
| f | A Tensor. Must have the same type asx. The forget gate. | 
| o | A Tensor. Must have the same type asx. The output gate. | 
| ci | A Tensor. Must have the same type asx. The cell input. | 
| co | A Tensor. Must have the same type asx. The cell after the tanh. | 
| cs_grad | A Tensor. Must have the same type asx.
The current gradient of cs. | 
| h_grad | A Tensor. Must have the same type asx.
The gradient of h vector. | 
| use_peephole | A bool. Whether the cell uses peephole connections. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A tuple of Tensorobjects (cs_prev_grad, dicfo, wci_grad, wcf_grad, wco_grad). | |
| cs_prev_grad | A Tensor. Has the same type asx. | 
| dicfo | A Tensor. Has the same type asx. | 
| wci_grad | A Tensor. Has the same type asx. | 
| wcf_grad | A Tensor. Has the same type asx. | 
| wco_grad | A Tensor. Has the same type asx. |