CPU Profiling: What, How, and When
2025年3月10日 · 2862 字 · 6 分钟 · Performance Profiling
What: 什么是CPU Profiling
一种程序CPU性能分析的技术。通过收集程序执行时的详细数据(例如函数调用频率、耗时、调用栈等),帮助开发者识别性能瓶颈,优化代码效率。一般用于性能分析,根因诊断的场景。
2025年3月10日 · 2862 字 · 6 分钟 · Performance Profiling
一种程序CPU性能分析的技术。通过收集程序执行时的详细数据(例如函数调用频率、耗时、调用栈等),帮助开发者识别性能瓶颈,优化代码效率。一般用于性能分析,根因诊断的场景。
2021年5月2日 · 980 字 · 2 分钟 · CPU Cache Performance
起因只是因为面试时被问到的一个问题:什么是CPU伪共享?
让我们先从CPU缓存讲起。