提交 3521f9e6 编写于 作者: H He Wei

Fix tensor print format

Avoid line feed when printing tensor with 0 or 1 dimension.
上级 3259dafa
......@@ -485,12 +485,12 @@ std::string Tensor::ToString() const {
auto dtype = Dtype();
MS_EXCEPTION_IF_NULL(dtype);
data_sync();
buf << "Tensor(shape=" << ShapeToString(shape_) << ", dtype=" << dtype->ToString() << ",\n";
buf << "Tensor(shape=" << ShapeToString(shape_) << ", dtype=" << dtype->ToString() << ',';
if (DataSize() < small_tensor_size) {
// Only print data for small tensor.
buf << data().ToString(data_type_, shape_) << ')';
buf << ((data().ndim() > 1) ? '\n' : ' ') << data().ToString(data_type_, shape_) << ')';
} else {
buf << "[...])";
buf << " [...])";
}
return buf.str();
}
......@@ -500,8 +500,8 @@ std::string Tensor::ToStringRepr() const {
auto dtype = Dtype();
MS_EXCEPTION_IF_NULL(dtype);
data_sync();
buf << "Tensor(shape=" << ShapeToString(shape_) << ", dtype=" << dtype->ToString() << ",\n"
<< data().ToString(data_type_, shape_) << ')';
buf << "Tensor(shape=" << ShapeToString(shape_) << ", dtype=" << dtype->ToString() << ','
<< ((data().ndim() > 1) ? '\n' : ' ') << data().ToString(data_type_, shape_) << ')';
return buf.str();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册