| 1286 | } |
| 1287 | |
| 1288 | StringPiece Tensor::tensor_data() const { |
| 1289 | if (buf_ == nullptr) return StringPiece(); // Don't die for empty tensors |
| 1290 | return StringPiece(static_cast<char*>(buf_->data()), TotalBytes()); |
| 1291 | } |
| 1292 | |
| 1293 | void* Tensor::data() const { |
| 1294 | if (buf_ == nullptr) return nullptr; // Don't die for empty tensors |