How do I figure out whether my process is CPU bound, I/O bound, Memory bound or

后端 未结 2 1499
Happy的楠姐
Happy的楠姐 2021-02-07 10:31

I\'m trying to speed up the time taken to compile my application and one thing I\'m investigating is to check what resources, if any, I can add to the build machine to speed thi

2条回答
  •  别那么骄傲
    2021-02-07 11:20

    Start > Run > perfmon.exe

    Performance Monitor can graph many system metrics that you can use to deduce where the bottlenecks are including cpu load, io operations, pagefile hits and so on.

    Additionally, the Platform SDK now includes a tool called XPerf that can provide information more relevant to developers.

提交回复
热议问题