aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/stat_summarizer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/util/stat_summarizer.cc')
-rw-r--r--tensorflow/core/util/stat_summarizer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/core/util/stat_summarizer.cc b/tensorflow/core/util/stat_summarizer.cc
index 0b675eaac9..6bd3d9c780 100644
--- a/tensorflow/core/util/stat_summarizer.cc
+++ b/tensorflow/core/util/stat_summarizer.cc
@@ -340,10 +340,10 @@ std::string StatSummarizer::GetStatsByOrderOfNodeDefinitions(
std::string StatSummarizer::GetOutputString() const {
std::stringstream stream;
- stream << "Total time (us): " << run_total_micros_;
+ stream << "Total time (us): " << run_total_micros_ << std::endl;
stream << GetTimingStatsByRunOrder();
stream << GetTimingStatsByTopDurations();
- stream << "Total Memory (bytes): " << memory_;
+ stream << "Total Memory (bytes): " << memory_ << std::endl;
stream << GetMemoryStatsByRunOrder();
stream << GetMemoryStatsByUsage();
return stream.str();