print memory allocated properly

This commit is contained in:
Dhanya Maliakal
2017-08-14 10:49:08 +02:00
parent c724756b5f
commit 1ec3a69e29
2 changed files with 4 additions and 2 deletions

View File

@@ -619,7 +619,8 @@ int UDPStandardImplementation::SetupFifoStructure() {
if(dataStreamer.size())dataStreamer[i]->SetFifo(fifo[i]);
}
FILE_LOG (logINFO) << "Fifo structure(s) reconstructed with Fifo Depth: " << fifoDepth;
FILE_LOG (logINFO) << "Memory Allocated Per Fifo: " << ( ((generalData->imageSize) * numberofJobs + (generalData->fifoBufferHeaderSize)) * fifoDepth) << " bytes" ;
FILE_LOG (logINFO) << " Fifo structure(s) reconstructed: " << numThreads;
return OK;
}