| 702 | } |
| 703 | |
| 704 | void Tensor::CheckIsAlignedAndSingleElement() const { |
| 705 | CHECK(IsAligned()) << "Aligned and single element"; |
| 706 | CHECK_EQ(1, NumElements()) << "Must have a one element tensor"; |
| 707 | } |
| 708 | |
| 709 | Tensor::~Tensor() { UnrefIfNonNull(buf_); } |
| 710 |
nothing calls this directly
no test coverage detected