aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/kernels/lstm_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/kernels/lstm_test.cc')
-rw-r--r--tensorflow/contrib/lite/kernels/lstm_test.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/kernels/lstm_test.cc b/tensorflow/contrib/lite/kernels/lstm_test.cc
index c068286b0d..d81220d8d3 100644
--- a/tensorflow/contrib/lite/kernels/lstm_test.cc
+++ b/tensorflow/contrib/lite/kernels/lstm_test.cc
@@ -97,9 +97,6 @@ class LSTMOpModel : 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);
@@ -233,7 +230,6 @@ class LSTMOpModel : public SingleOpModel {
int output_;
int output_state_;
int cell_state_;
- int scratch_buffer_;
int n_batch_;
int n_input_;