Valgrind 是否/可以使用多个处理器?
有没有办法让 valgrind 使用多个处理器?
我正在使用 valgrind 的 callgrind 进行一些瓶颈分析,并注意到我的应用程序中的资源使用行为与在 valgrind/callgrind 之外运行时的资源使用行为有显着不同。
当在 valgrind 外部运行时,它会使用多个处理器,但在 valgrind 内部运行时仅使用一个处理器。这让我担心我的瓶颈会出现在不同的地方,从而使我的分析无效。
Is there a way to get valgrind to use multiple processors?
I'm doing some bottleneck profiling with valgrind's callgrind and noticed significantly different resource usage behavior in my application vs when run outside of valgrind/callgrind.
When run outside valgrind, it maxes out several processors, but run inside valgrind only uses one. This makes me worry that my bottle necks will be in different places, and thus invalidate my profiling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 Valgrind 文档,它们不支持多个处理器:
According to the Valgrind Docs, they do not support multiple processors:
看一下:
http://valgrind.org/docs/ Manual/manual-core.html#manual-core.pthreads_perf_sched
他们补充道:
这可能会有所帮助。
Take a look at:
http://valgrind.org/docs/manual/manual-core.html#manual-core.pthreads_perf_sched
They added:
It may help.