aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/interpreter.h
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/contrib/lite/interpreter.h')
-rw-r--r--tensorflow/contrib/lite/interpreter.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/interpreter.h b/tensorflow/contrib/lite/interpreter.h
index 37961cd1dc..436c1007af 100644
--- a/tensorflow/contrib/lite/interpreter.h
+++ b/tensorflow/contrib/lite/interpreter.h
@@ -589,6 +589,11 @@ class Interpreter {
bool allow_buffer_handle_output_ = false;
+ // Tracking bit for whether a tensor was resized in the course of an op
+ // invocation. This is a useful hint to ensure that dynamic tensor outputs
+ // trigger downstream reallocation after op invocation.
+ bool tensor_resized_since_op_invoke_ = false;
+
// Profiler for this interpreter instance.
profiling::Profiler* profiler_;
};