| 2 | #include <AMReX_GpuDevice.H> |
| 3 | |
| 4 | void* |
| 5 | amrex::SArena::alloc (std::size_t sz) |
| 6 | { |
| 7 | void* pt = The_Arena()->alloc(sz); |
| 8 | m_profiler.profile_alloc(pt, sz); |
| 9 | return pt; |
| 10 | } |
| 11 | |
| 12 | void |
| 13 | amrex::SArena::free (void* pt) |
nothing calls this directly
no test coverage detected