开发者

Is Stopwatch really broken?

开发者 https://www.devze.com 2022-12-26 01:13 出处:网络
At MSDN page for Stopwatch class I discovered link to interesting article which makes following statement about Stopwatch:

At MSDN page for Stopwatch class I discovered link to interesting article which makes following statement about Stopwatch:

However there are some serious issues:

  • This can be unreliable on a PC with multiple processors. Due to a bug in

    the BIOS, Start() and Stop() must be executed on the same processor to get a correct result.

  • This is unreliable on processors that do not have a constant clock speed (most processors can reduce the clock speed to conserve energy). This is explained in detail here.

I am little confused. I've seen tons of examples of using Stopwatch and nobody mention this drawbacks. How serious is this?开发者_如何学Python Should I avoid using Stopwatch?


It is not broken it just has limitations. For most purposes (read: informal micro-benchmarking) StopWatch is fine to use simply because it is good enough for informal testing. For more formal purposes you would most likely want to roll your own instrumentation code as you would that much more invested in getting proper results.


More interesting questions are :

  1. under what conditions will Stop() be executed on a different processor than Start()?
    .
    In most application scenarios, the answer is "none".

  2. under what conditions will the clock speed of a processor change during a measured interval?
    .
    In CPU-intensive benchmarks, "none".


See the notes in the MSDN Article:

On a multiprocessor computer, it does not matter which processor the thread runs on. However, because of bugs in the BIOS or the Hardware Abstraction Layer (HAL), you can get different timing results on different processors. To specify processor affinity for a thread, use the ProcessThread.ProcessorAffinity method.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号