How should I profile visual c++ express?

前端 未结 3 1889
庸人自扰
庸人自扰 2021-01-18 02:30

I\'ve read a lot of the posts here giving profiling advice but I need to ask this.

From what I can tell, Visual C++ Express doesn\'t generate a debugging file that i

3条回答
  •  无人共我
    2021-01-18 03:03

    First, the polar angular velocity of the car should be proportional to the speed of the car and to the angular position of the steering wheel (to a first approximation).

    Second, there's hardly a professor or blogger or book author who will tell you this, but if you want to see what the code is doing and optimize it, the hands-down simplest way is this.

    Added: Programmers have a strong tendency to assume that any automated profiling tool will do a better job than the manual technique, but that depends on the details of exactly what they do. Most of them implement what's popular rather than what is most effective. The result is some performance problems being missed, putting a cap on the speedup you can get. Here is a list of common misconceptions that result in failing to find performance problems.

    Some profilers do get it nearly right, including RotateRight/Zoom and LTProf.

提交回复
热议问题