| 1301 | } |
| 1302 | |
| 1303 | string Tensor::DebugString(int num_values) const { |
| 1304 | return strings::StrCat("Tensor<type: ", DataTypeString(dtype()), |
| 1305 | " shape: ", shape().DebugString(), |
| 1306 | " values: ", SummarizeValue(num_values), ">"); |
| 1307 | } |
| 1308 | |
| 1309 | string Tensor::DeviceSafeDebugString() const { |
| 1310 | return strings::StrCat("Tensor<type: ", DataTypeString(dtype()), |
no test coverage detected