Wrong logic in `gpu_info.cc` for reserving memory
Created by: reyoung
These lines are wrong about how to reserve memory in GPU
It should be:
size_t total = ...
size_t avail = ...
size_t reserving = ...
avail = std::min(avail, total-reserving);
allocating = Ratio* (total-reserving);