C++用于测试性能的单元测试(综合基准)
有没有类似单元测试库的库,但不是测试正确性,而是测试此类函数的性能,输出是执行时间、CPU 指令数、性能方差、缓存未命中等。
is there any library just like unit testing library, but instead of testing for correctness, its testing the performance of such functions, the output is execution time, cpu instruction count, performance variance, cache-miss, etc..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 gprof 和 valgrind 用于性能分析。它们当然可以在 Linux 上运行,并且您几乎可以完成您提到的所有操作。
I use gprof and valgrind for performance profiling. They certainly work on Linux and you can pretty much do all the things you mention.