change separators for easy parsing.

PiperOrigin-RevId: 292011957
Change-Id: Id0eafae2d46aacdab5322173cffe6c8e25b2dc88
This commit is contained in:
A. Unique TensorFlower 2020-01-28 14:18:12 -08:00 committed by TensorFlower Gardener
parent e9db50e8b4
commit acb0623342

View File

@ -200,7 +200,7 @@ string OpKernel::TraceString(OpKernelContext* ctx, bool verbose) {
DataTypeString(input_dtype), ctx->input(i).shape().DebugString()));
}
return strings::StrCat(trace_string, "#shape=(",
absl::StrJoin(tensor_shapes, ","), ")#");
absl::StrJoin(tensor_shapes, ";"), ")#");
}
void AsyncOpKernel::Compute(OpKernelContext* context) {