From 993bf650626c536a4f232b345a5cb8329dcc1b2c Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Tue, 3 Sep 2019 08:51:59 -0700 Subject: [PATCH] Changing the tensor tracer report file name. PiperOrigin-RevId: 266938476 --- tensorflow/python/tpu/tensor_tracer_report.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/tpu/tensor_tracer_report.py b/tensorflow/python/tpu/tensor_tracer_report.py index 29e48752f23..6f5e4e4aec7 100644 --- a/tensorflow/python/tpu/tensor_tracer_report.py +++ b/tensorflow/python/tpu/tensor_tracer_report.py @@ -18,8 +18,8 @@ from __future__ import absolute_import from __future__ import division from __future__ import print_function -import os import collections +import os from tensorflow.python.platform import gfile from tensorflow.python.platform import tf_logging as logging @@ -50,7 +50,7 @@ _FIELD_NAME_NUM_CACHE_INDICES = 'number-of-indices:' _FIELD_NAME_TOPOLOGICAL_SORT_SUCCEED = 'topological-sort-succeed:' _CURRENT_VERSION = 'use-outside-compilation' -_TT_REPORT_PROTO = 'tensor_tracer_report.proto' +_TT_REPORT_PROTO = 'tensor_tracer_report.report_pb' def topological_sort(g):