1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-09 23:45:36 +00:00

Benchmark_IO cleaner output

This commit is contained in:
Antonin Portelli 2020-10-09 21:46:45 +01:00
parent 5f893bf9af
commit b0d61b9687

View File

@ -50,8 +50,11 @@ void stats(Mat &mean, Mat &stdDev, const std::vector<Mat> &data)
}
#define grid_printf(...) \
MSG << "";\
printf(__VA_ARGS__);
{\
char _buf[1024];\
sprintf(_buf, __VA_ARGS__);\
MSG << _buf;\
}
enum {sRead = 0, sWrite = 1, gRead = 2, gWrite = 3};