Add missing commas in TraceMe arguments.

PiperOrigin-RevId: 282459671
Change-Id: Iff88eb052df021036bc1ce604e3e4faf8e0f6ea7
This commit is contained in:
A. Unique TensorFlower 2019-11-25 16:40:53 -08:00 committed by TensorFlower Gardener
parent 29f12759ab
commit 1b17b134a9

View File

@ -398,7 +398,7 @@ void RemoteCallOp::ComputeAsync(OpKernelContext* ctx, DoneCallback done) {
profiler::TraceMe trace_me( profiler::TraceMe trace_me(
[&] { [&] {
return absl::StrCat("RemoteCallOp#func_name=", func_name, return absl::StrCat("RemoteCallOp#func_name=", func_name,
"parent_step_id=", ctx->step_id(), ",parent_step_id=", ctx->step_id(),
",function_step_id=", opts.step_id, ",function_step_id=", opts.step_id,
",device=", target_device, "#"); ",device=", target_device, "#");
}, },
@ -409,7 +409,7 @@ void RemoteCallOp::ComputeAsync(OpKernelContext* ctx, DoneCallback done) {
profiler::TraceMe activity( profiler::TraceMe activity(
[&] { [&] {
return absl::StrCat("RemoteCallOpDone#func_name=", func_name, return absl::StrCat("RemoteCallOpDone#func_name=", func_name,
"parent_step_id=", ctx->step_id(), ",parent_step_id=", ctx->step_id(),
",function_step_id=", opts.step_id, ",function_step_id=", opts.step_id,
",device=", target_device, "#"); ",device=", target_device, "#");
}, },