| 37 | namespace cuda { |
| 38 | float getMemoryPressure() { return memoryManager().getMemoryPressure(); } |
| 39 | float getMemoryPressureThreshold() { |
| 40 | return memoryManager().getMemoryPressureThreshold(); |
| 41 | } |
| 42 | |
| 43 | bool jitTreeExceedsMemoryPressure(size_t bytes) { |
| 44 | return memoryManager().jitTreeExceedsMemoryPressure(bytes); |
no test coverage detected