| 31 | namespace opencl { |
| 32 | float getMemoryPressure() { return memoryManager().getMemoryPressure(); } |
| 33 | float getMemoryPressureThreshold() { |
| 34 | return memoryManager().getMemoryPressureThreshold(); |
| 35 | } |
| 36 | |
| 37 | bool jitTreeExceedsMemoryPressure(size_t bytes) { |
| 38 | return memoryManager().jitTreeExceedsMemoryPressure(bytes); |
no test coverage detected