| 109 | } |
| 110 | |
| 111 | bool |
| 112 | Arena::isPinned () const |
| 113 | { |
| 114 | #ifdef AMREX_USE_GPU |
| 115 | return (! arena_info.use_cpu_memory) |
| 116 | && arena_info.device_use_hostalloc; |
| 117 | #else |
| 118 | return false; |
| 119 | #endif |
| 120 | } |
| 121 | |
| 122 | bool |
| 123 | Arena::hasFreeDeviceMemory (std::size_t) |
no outgoing calls
no test coverage detected