| 19 | namespace paddle::memory::allocation { |
| 20 | |
| 21 | void Allocator::FreeImpl(phi::Allocation* allocation) { |
| 22 | static_cast<Allocation*>(allocation) |
| 23 | ->TopDecoratedAllocator() |
| 24 | ->Free(allocation); |
| 25 | } |
| 26 | |
| 27 | void MultiScalePoolAllocator::RecordAlloc(uintptr_t allocator, |
| 28 | uint64_t id, |
nothing calls this directly
no test coverage detected