| 1307 | } |
| 1308 | |
| 1309 | string Tensor::DeviceSafeDebugString() const { |
| 1310 | return strings::StrCat("Tensor<type: ", DataTypeString(dtype()), |
| 1311 | " shape: ", shape().DebugString(), ">"); |
| 1312 | } |
| 1313 | |
| 1314 | void Tensor::FillDescription(TensorDescription* description) const { |
| 1315 | description->set_dtype(dtype()); |
no test coverage detected