| 38 | } |
| 39 | |
| 40 | double TCudaManager::TotalMemoryMb(ui32 devId) const { |
| 41 | auto devPtr = GetState().Devices[devId]; |
| 42 | return devPtr->GetMemoryState().RequestedGpuRam * 1.0 / 1024 / 1024; |
| 43 | } |
| 44 | |
| 45 | void TCudaManager::StopChild() { |
| 46 | CB_ENSURE(IsChildManager); |
nothing calls this directly
no test coverage detected