| 222 | } |
| 223 | |
| 224 | string BufferAllocation::Slice::ToString() const { |
| 225 | return absl::StrCat("{index:", index(), ", offset:", offset_, |
| 226 | ", size:", size_, "}"); |
| 227 | } |
| 228 | |
| 229 | BufferAllocation::Slice BufferAllocation::GetSlice( |
| 230 | const HloValue& buffer) const { |
no test coverage detected