Skip to content

Commit 60e77a2

Browse files
Merge pull request #43 from intel-innersource/fix/stats-duration
output summary stats duration in seconds, not ms
2 parents 7402fd1 + 6fce486 commit 60e77a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IntelPresentMon/Core/source/pmon/RawFrameDataWriter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ namespace p2c::pmon
345345

346346
double RawFrameDataWriter::GetDuration_() const
347347
{
348-
return endTime - startTime;
348+
return (endTime - startTime) / 1000.;
349349
}
350350

351351
void RawFrameDataWriter::WriteStats_()

0 commit comments

Comments
 (0)