| 891 | size_t size() const override { return sizeof(T) * elem_; } |
| 892 | TensorBuffer* root_buffer() override { return root_; } |
| 893 | bool GetAllocatedBytes(size_t* out_bytes) const override { |
| 894 | return root_->GetAllocatedBytes(out_bytes); |
| 895 | } |
| 896 | void FillAllocationDescription(AllocationDescription* proto) const override { |
| 897 | root_->FillAllocationDescription(proto); |
| 898 | } |
nothing calls this directly
no test coverage detected