| 45 | using Clock = std::chrono::steady_clock; |
| 46 | |
| 47 | static double ElapsedMs(Clock::time_point a, Clock::time_point b) { |
| 48 | return std::chrono::duration<double, std::milli>(b - a).count(); |
| 49 | } |
| 50 | |
| 51 | static std::string ReadFile(const std::string& path) { |
| 52 | std::ifstream f(path, std::ios::binary); |