incorrect printout to MB

This commit is contained in:
2020-01-28 10:43:06 +01:00
parent d9b88ea7d2
commit c42b4b8c0e
2 changed files with 3 additions and 3 deletions

View File

@ -195,8 +195,8 @@ void Implementation::SetupFifoStructure() {
FILE_LOG(logINFO) << "Memory Allocated Per Fifo: "
<< (double)(((size_t)(generalData->imageSize) +
(size_t)(generalData->fifoBufferHeaderSize)) *
(size_t)fifoDepth) / (1000.00 * 1000.00)
<< " Mb";
(size_t)fifoDepth) / (double)(1024 * 1024)
<< " MB";
FILE_LOG(logINFO) << numThreads << " Fifo structure(s) reconstructed";
}