aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-30 18:05:37 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-30 18:08:13 -0700
commit85d30bfcf412bd1ca06fa33548344bf40eedb4ac (patch)
tree5201c3fe5d1da4e0dd4379df588fd5216377b11a /tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc
parent40721422bfc9cec546537799e16dd75f443d2db2 (diff)
Internal change.
PiperOrigin-RevId: 194877173
Diffstat (limited to 'tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc b/tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc
index 93b635ae57..5881ced7c7 100644
--- a/tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc
+++ b/tensorflow/contrib/lite/kernels/unidirectional_sequence_lstm_test.cc
@@ -100,9 +100,6 @@ class UnidirectionalLSTMOpModel : public SingleOpModel {
projection_bias_ = AddNullInput();
}
- scratch_buffer_ = AddOutput(TensorType_FLOAT32);
- // TODO(ghodrat): Modify these states when we have a permanent solution for
- // persistent buffer.
output_state_ = AddOutput(TensorType_FLOAT32);
cell_state_ = AddOutput(TensorType_FLOAT32);
output_ = AddOutput(TensorType_FLOAT32);
@@ -238,7 +235,6 @@ class UnidirectionalLSTMOpModel : public SingleOpModel {
int output_;
int output_state_;
int cell_state_;
- int scratch_buffer_;
int n_batch_;
int n_input_;