| 707 | } |
| 708 | |
| 709 | Tensor::~Tensor() { UnrefIfNonNull(buf_); } |
| 710 | |
| 711 | void Tensor::CopyFromInternal(const Tensor& other, const TensorShape& shape) { |
| 712 | CHECK_EQ(shape.num_elements(), other.NumElements()); |
nothing calls this directly
no test coverage detected