From da78c46560fbccec8e61039e6b836fee5ebdc8c1 Mon Sep 17 00:00:00 2001 From: Taehee Jeong Date: Thu, 14 May 2020 00:31:22 -0700 Subject: [PATCH] Fix comment to reflect actual logic. PiperOrigin-RevId: 311483016 Change-Id: Ib66f41fd4c470bdcd516f4f03de7d78fb8ddde1c --- tensorflow/lite/graph_info.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tensorflow/lite/graph_info.cc b/tensorflow/lite/graph_info.cc index 875a03af817..a419a56a9e6 100644 --- a/tensorflow/lite/graph_info.cc +++ b/tensorflow/lite/graph_info.cc @@ -191,11 +191,11 @@ class PartitionGraphIntoIndependentNodeSubsetsImpl { std::vector* node_subsets_; std::vector node_type_; // Maps from tensor index to the epoch in which it is assigned. Also special - // negative values of kEpochNotAssigned if not assigned, kEpochNotReady if it - // is an input or constant. + // negative values of kEpochNotReady if not assigned, kEpochAlwaysReady if it + // is an input to the whole model or a constant that has no dependencies. std::vector tensor_epochs_; // Maps from tensor index to the epoch in which it is assigned. Also special - // negative values of kEpochNotAssigned if not assigned. + // negative values of kEpochNotReady if not assigned. std::vector node_epochs_; };