updating format specifier for size_t

This commit is contained in:
Qiwei Ye 2016-04-18 13:32:49 +08:00
Родитель d56db13d26
Коммит ae42f3e09b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -184,8 +184,8 @@ class minibatchutterancesourcemulti : public minibatchsource
if (p_pageintimer != nullptr)
{
double pageintime = (double)(*p_pageintimer);
fprintf(stderr, "Chunk read statistics; Total time = %.8g, Num Frames read = %d, Num bytes per frame = %d, Avg I/O bandwidth = %.2g MB/sec).\n",
pageintime, totalframes, (int)featdim * sizeof(float), (featdim * sizeof(float) * totalframes / 1024 / 1024 / pageintime));
fprintf(stderr, "Chunk read statistics; Total time = %.8g, Num Frames read = %zu, Num bytes per frame = %zu, Avg I/O bandwidth = %.2g MB/sec).\n",
pageintime, totalframes, featdim * sizeof(float), (double)(featdim * sizeof(float) * totalframes / 1024 / 1024 / pageintime));
}
}
}