diff --git a/CHANGELOG.md b/CHANGELOG.md index b8894a7f6e3..c43e26450e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ - Support in memory loading of XYZ files - Fix geometry picker Error when LineSet objects are presented (PR #6499) - Fix mis-configured application .desktop link for the Open3D viewer when installing to a custom path (PR #6599) +- Fix regression in printing cuda tensor from PR #6444 🐛 ## 0.13 diff --git a/cpp/open3d/core/Tensor.cpp b/cpp/open3d/core/Tensor.cpp index d405c501993..7e1014bc800 100644 --- a/cpp/open3d/core/Tensor.cpp +++ b/cpp/open3d/core/Tensor.cpp @@ -750,7 +750,7 @@ std::string Tensor::ToString(bool with_suffix, std::ostringstream rc; if (IsCUDA() || !IsContiguous()) { Tensor host_contiguous_tensor = Contiguous().To(Device("CPU:0")); - rc << host_contiguous_tensor.ToString(with_suffix, indent); + rc << host_contiguous_tensor.ToString(false, indent); } else { if (shape_.NumElements() == 0) { rc << indent;