From 9a4a5569e43f2ac6e14d2dafcf75d35f87c6d976 Mon Sep 17 00:00:00 2001 From: Jiho Choi Date: Fri, 28 Feb 2020 11:50:23 -0800 Subject: [PATCH] Add temporary vlog messages for debugging. PiperOrigin-RevId: 297894920 Change-Id: I46cb40e46276a98b40616e7bb89eacfd635f8940 --- tensorflow/core/profiler/convert/xplane_to_trace_events.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tensorflow/core/profiler/convert/xplane_to_trace_events.cc b/tensorflow/core/profiler/convert/xplane_to_trace_events.cc index 833c1112dfe..565ca2cba28 100644 --- a/tensorflow/core/profiler/convert/xplane_to_trace_events.cc +++ b/tensorflow/core/profiler/convert/xplane_to_trace_events.cc @@ -37,20 +37,16 @@ Device BuildDeviceAndResource(const XPlaneVisitor& plane) { } // namespace void ConvertXSpaceToTraceEvents(const XSpace& xspace, Trace* trace) { - VLOG(1) << "ConvertXSpaceToTraceEvents"; auto* trace_devices = trace->mutable_devices(); for (const auto& raw_plane : xspace.planes()) { XPlaneVisitor xplane(&raw_plane); - VLOG(1) << " XPlane id=" << xplane.Id() << " name=" << xplane.Name(); // Convert devices and resources. int64 device_id = xplane.Id(); (*trace_devices)[device_id] = BuildDeviceAndResource(xplane); // Convert events. xplane.ForEachLine([&](const XLineVisitor& xline) { - VLOG(1) << " XLine id=" << xline.Id() << " name=" << xline.Name() - << " display_id=" << xline.DisplayId(); int64 resource_id = xline.Id(); // Either thread id or CUDA stream id. xline.ForEachEvent([&](const XEventVisitor& xevent) { auto* event = trace->add_trace_events();