-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop failing attempts to actually verify the test results.
To much noise.
- Loading branch information
Showing
2 changed files
with
102 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
def9e0c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't entirely understand the changes to benchmark_runner.cc . Is this taking our results of the total CPU time used and now not displaying that?
def9e0c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if benchmark itself runs benchmark in threads, it will accumulate (sum) the timings
of each of the threads. But if we were measuring the total cpu time, then each thread
will already measure the time of all the threads, and when we sum that..
So we have to, in some way, only take that measurement from just one thread.
Dividing by the number of threads should be good enough.
To be noted, i suspect all the timings are broken (== unreliable, incorrect) anyway
when
->Threads()
is used, i have filed #769def9e0c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I understand. Thanks.