|
|
@ -92,6 +92,8 @@ bool benchmark::State::KeepRunning()
|
|
|
|
|
|
|
|
|
|
|
|
--count;
|
|
|
|
--count;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assert(count != 0 && "count == 0 => (now == 0 && beginTime == 0) => return above");
|
|
|
|
|
|
|
|
|
|
|
|
// Output results
|
|
|
|
// Output results
|
|
|
|
double average = (now-beginTime)/count;
|
|
|
|
double average = (now-beginTime)/count;
|
|
|
|
int64_t averageCycles = (nowCycles-beginCycles)/count;
|
|
|
|
int64_t averageCycles = (nowCycles-beginCycles)/count;
|
|
|
|