如何针对平均运行时间指标运行 JMH 基准测试操作?

发布于 2025-01-10 20:09:39 字数 114 浏览 0 评论 0原文

我正在尝试测量特定方法的平均运行时性能。我想运行它们一亿次。使用默认选项,这将花费很长时间。我可以启用或禁用哪些选项来实现整个基准测试的更快执行时间?我不需要热身和其他微调。我所需要的只是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2025-01-17 20:09:39

我们可以设置

@Measurement(iterations = 100000000)
public void function() {
    // ...
}

让JMH执行您的操作1亿次。

We can set

@Measurement(iterations = 100000000)
public void function() {
    // ...
}

to have the JMH execute your operation 100 million times.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文