| 18 | namespace tensorflow { |
| 19 | |
| 20 | TensorReference::TensorReference(const Tensor& tensor) |
| 21 | : buf_(tensor.buf_ ? tensor.buf_->root_buffer() : nullptr) { |
| 22 | if (buf_) buf_->Ref(); |
| 23 | } |
| 24 | |
| 25 | } // namespace tensorflow |
nothing calls this directly
no test coverage detected