mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-12-27 22:14:57 +03:00
ea8e19f286
TODO: kill istream
28 lines
626 B
C++
28 lines
626 B
C++
#ifndef UTIL_USAGE_H
|
|
#define UTIL_USAGE_H
|
|
#include <cstddef>
|
|
#include <iosfwd>
|
|
#include <string>
|
|
#include <stdint.h>
|
|
|
|
namespace util {
|
|
// Time in seconds since process started. Zero on unsupported platforms.
|
|
double WallTime();
|
|
|
|
// User + system time.
|
|
double CPUTime();
|
|
|
|
// Resident usage in bytes.
|
|
uint64_t RSSMax();
|
|
|
|
void PrintUsage(std::ostream &to);
|
|
|
|
// Determine how much physical memory there is. Return 0 on failure.
|
|
uint64_t GuessPhysicalMemory();
|
|
|
|
// Parse a size like unix sort. Sadly, this means the default multiplier is K.
|
|
uint64_t ParseSize(const std::string &arg);
|
|
|
|
} // namespace util
|
|
#endif // UTIL_USAGE_H
|