如何针对平均运行时间指标运行 JMH 基准测试操作?
我正在尝试测量特定方法的平均运行时性能。我想运行它们一亿次。使用默认选项,这将花费很长时间。我可以启用或禁用哪些选项来实现整个基准测试的更快执行时间?我不需要热身和其他微调。我所需要的只是 1 亿次操作的平均时间。
I am trying to measure average runtime performance for particular methods. I want to run them 100 million times. With default options this is taking an eternity. What options I can enable or disable to achieve a faster execution time for the benchmark testing as a whole? I do not need warm up and other fine tuning. All I need is average time for 100 million operations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们可以设置
让JMH执行您的操作1亿次。
We can set
to have the JMH execute your operation 100 million times.