Changing the tensor tracer report file name.

PiperOrigin-RevId: 266938476
This commit is contained in:
A. Unique TensorFlower 2019-09-03 08:51:59 -07:00 committed by TensorFlower Gardener
parent e21b2570a3
commit 993bf65062

View File

@ -18,8 +18,8 @@ from __future__ import absolute_import
from __future__ import division from __future__ import division
from __future__ import print_function from __future__ import print_function
import os
import collections import collections
import os
from tensorflow.python.platform import gfile from tensorflow.python.platform import gfile
from tensorflow.python.platform import tf_logging as logging 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:' _FIELD_NAME_TOPOLOGICAL_SORT_SUCCEED = 'topological-sort-succeed:'
_CURRENT_VERSION = 'use-outside-compilation' _CURRENT_VERSION = 'use-outside-compilation'
_TT_REPORT_PROTO = 'tensor_tracer_report.proto' _TT_REPORT_PROTO = 'tensor_tracer_report.report_pb'
def topological_sort(g): def topological_sort(g):