Skip to content

Commit 6fce486

Browse files
committed
output summary stats duration in seconds, not ms
1 parent 7402fd1 commit 6fce486

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)