使用 JMH 做 Kotlin 的基准测试

2024-01-08 22:58
文章标签 使用 测试 kotlin 基准 jmh

本文主要是介绍使用 JMH 做 Kotlin 的基准测试,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

640?wx_fmt=jpeg

一. 基准测试

基准测试是指通过设计科学的测试方法、测试工具和测试系统,实现对一类测试对象的某项性能指标进行定量的和可对比的测试。

基准测试是一种测量和评估软件性能指标的活动。你可以在某个时候通过基准测试建立一个已知的性能水平(称为基准线),当系统的软硬件环境发生变化之后再进行一次基准测试以确定那些变化对性能的影响。

二. JMH

JMH(Java Microbenchmark Harness) 是专门用于进行代码的微基准测试的一套工具API,也支持基于JVM的语言例如 Scala、Groovy、Kotlin。它是由 OpenJDK/Oracle 里面那群开发了 Java 编译器的大牛们所开发的工具。

三. 举例

首先,在 build.gradle 中添加 JMH 所需的依赖

 
  1. plugins {

  2.    id 'java'

  3.    id 'org.jetbrains.kotlin.jvm' version '1.3.10'

  4.    id "org.jetbrains.kotlin.kapt" version "1.3.10"

  5. }


  6. ...


  7. dependencies {

  8.    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8"

  9.    compile "org.jetbrains.kotlin:kotlin-reflect:1.3.10"

  10.    testCompile group: 'junit', name: 'junit', version: '4.12'


  11.    compile "org.openjdk.jmh:jmh-core:1.21"

  12.    kapt "org.openjdk.jmh:jmh-generator-annprocess:1.21"

  13.    ......

  14. }

3.1 对比 Sequence 和 List

在 Kotlin 1.2.70 的 release note 上曾说明:

使用 Sequence 有助于避免不必要的临时分配开销,并且可以显着提高复杂处理 PipeLines 的性能。

所以,有必要下面编写一个例子来证实这个说法:

 
  1. import org.openjdk.jmh.annotations.*

  2. import org.openjdk.jmh.results.format.ResultFormatType

  3. import org.openjdk.jmh.runner.Runner

  4. import org.openjdk.jmh.runner.options.OptionsBuilder

  5. import java.util.concurrent.TimeUnit


  6. /**

  7. * Created by tony on 2018-12-10.

  8. */

  9. @BenchmarkMode(Mode.Throughput) // 基准测试的模式,采用整体吞吐量的模式

  10. @Warmup(iterations = 3) // 预热次数

  11. @Measurement(iterations = 10, time = 5, timeUnit = TimeUnit.SECONDS) // 测试参数,iterations = 10 表示进行10轮测试

  12. @Threads(8) // 每个进程中的测试线程数

  13. @Fork(2)  // 进行 fork 的次数,表示 JMH 会 fork 出两个进程来进行测试

  14. @OutputTimeUnit(TimeUnit.MILLISECONDS) // 基准测试结果的时间类型

  15. open class SequenceBenchmark {


  16.    @Benchmark

  17.    fun testSequence():Int {


  18.        return sequenceOf(1,2,3,4,5,6,7,8,9,10)

  19.                .map{ it * 2 }

  20.                .filter { it % 3  == 0 }

  21.                .map{ it+1 }

  22.                .sum()

  23.    }


  24.    @Benchmark

  25.    fun testList():Int {


  26.        return listOf(1,2,3,4,5,6,7,8,9,10)

  27.                .map{ it * 2 }

  28.                .filter { it % 3  == 0 }

  29.                .map{ it+1 }

  30.                .sum()

  31.    }

  32. }


  33. fun main() {


  34.    val options = OptionsBuilder()

  35.            .include(SequenceBenchmark::class.java.simpleName)

  36.            .output("benchmark_sequence.log")

  37.            .build()

  38.    Runner(options).run()

  39. }

在运行上述代码之前,需要先执行 ./gradlew build

然后,再运行main函数,得到如下的结果。

 
  1. # Run complete. Total time: 00:05:23


  2. REMEMBER: The numbers below are just data. To gain reusable insights, you need to follow up on

  3. why the numbers are the way they are. Use profilers (see -prof, -lprof), design factorial

  4. experiments, perform baseline and negative tests that provide experimental control, make sure

  5. the benchmarking environment is safe on JVM/OS/HW level, ask for reviews from the domain experts.

  6. Do not assume the numbers tell you what you want them to tell.


  7. Benchmark                        Mode  Cnt      Score     Error   Units

  8. SequenceBenchmark.testList      thrpt   20  15924.272 ± 305.825  ops/ms

  9. SequenceBenchmark.testSequence  thrpt   20  23099.938 ± 515.524  ops/ms

果然,经过多次链式调用时 Sequence 比起 List 具有更高的效率。

如果把结果导出成json格式,还可以借助 jmh 相关的 gradle 插件生成可视化的报告。

 
  1. fun main() {


  2.    val options = OptionsBuilder()

  3.            .include(SequenceBenchmark::class.java.simpleName)

  4.            .resultFormat(ResultFormatType.JSON)

  5.            .result("benchmark_sequence.json")

  6.            .output("benchmark_sequence.log")

  7.            .build()

  8.    Runner(options).run()

  9. }

需要依赖到这个插件:https://github.com/jzillmann/gradle-jmh-report

借助 gradle-jmh-report 生成如下的报告:

640?wx_fmt=png

3.2 内联函数和非内联函数

Kotlin 的内联函数从编译器角度将函数的函数体复制到调用处实现内联,减少了使用高阶函数带来的隐性成本。

尝试编写一个例子:

 
  1. @BenchmarkMode(Mode.Throughput) // 基准测试的模式,采用整体吞吐量的模式

  2. @Warmup(iterations = 3) // 预热次数

  3. @Measurement(iterations = 10, time = 5, timeUnit = TimeUnit.SECONDS) // 测试参数,iterations = 10 表示进行10轮测试

  4. @Threads(8) // 每个进程中的测试线程数

  5. @Fork(2)  // 进行 fork 的次数,表示 JMH 会 fork 出两个进程来进行测试

  6. @OutputTimeUnit(TimeUnit.MILLISECONDS) // 基准测试结果的时间类型

  7. open class InlineBenchmark {


  8.    fun nonInlined(block: () -> Unit) { // 不用内联的函数

  9.        block()

  10.    }


  11.    inline fun inlined(block: () -> Unit) { // 使用内联的函数

  12.        block()

  13.    }


  14.    @Benchmark

  15.    fun testNonInlined() {


  16.        nonInlined {

  17.            println("")

  18.        }

  19.    }


  20.    @Benchmark

  21.    fun testInlined() {


  22.        inlined {

  23.            println("")

  24.        }

  25.    }


  26. }

得到如下的结果。

 
  1. # Run complete. Total time: 00:05:23


  2. REMEMBER: The numbers below are just data. To gain reusable insights, you need to follow up on

  3. why the numbers are the way they are. Use profilers (see -prof, -lprof), design factorial

  4. experiments, perform baseline and negative tests that provide experimental control, make sure

  5. the benchmarking environment is safe on JVM/OS/HW level, ask for reviews from the domain experts.

  6. Do not assume the numbers tell you what you want them to tell.


  7. Benchmark                        Mode  Cnt   Score   Error   Units

  8. InlineBenchmark.testInlined     thrpt   20  95.866 ± 4.085  ops/ms

  9. InlineBenchmark.testNonInlined  thrpt   20  92.736 ± 3.085  ops/ms

果然,内联更高效一些。

640?wx_fmt=png

3.3 协程和RxJava

自从 Kotlin 有协程这个功能之后,经常会有人提起协程和RxJava的比对。

于是,我也尝试编写一个例子,此例子使用的 Kotlin 1.3.10 ,协程的版本1.0.1,RxJava 2.2.4

 
  1. @BenchmarkMode(Mode.Throughput) // 基准测试的模式,采用整体吞吐量的模式

  2. @Warmup(iterations = 3) // 预热次数

  3. @Measurement(iterations = 10, time = 5, timeUnit = TimeUnit.SECONDS) // 测试参数,iterations = 10 表示进行10轮测试

  4. @Threads(8) // 每个进程中的测试线程数

  5. @Fork(2)  // 进行 fork 的次数,表示 JMH 会 fork 出两个进程来进行测试

  6. @OutputTimeUnit(TimeUnit.MILLISECONDS) // 基准测试结果的时间类型

  7. @State(Scope.Thread) // 为每个线程独享

  8. open class CoroutinesBenchmark {


  9.    var counter1 = AtomicInteger()

  10.    var counter2 = AtomicInteger()


  11.    @Setup

  12.    fun prepare() {


  13.        counter1.set(0)

  14.        counter2.set(0)

  15.    }


  16.    fun calculate(counter:AtomicInteger): Double {


  17.        val result = ArrayList<Int>()


  18.        for (i in 0 until 10_000) {


  19.            result.add(counter.incrementAndGet())

  20.        }


  21.        return result.asSequence().filter { it % 3 ==0 }.map { it *2 + 1 }.average()

  22.    }


  23.    @Benchmark

  24.    fun testCoroutines() = runBlocking {


  25.        calculate(counter1)

  26.    }


  27.    @Benchmark

  28.    fun testRxJava() = Observable.fromCallable { calculate(counter2) }.blockingFirst()


  29. }

执行结果如下:

 
  1. # Run complete. Total time: 00:05:23


  2. REMEMBER: The numbers below are just data. To gain reusable insights, you need to follow up on

  3. why the numbers are the way they are. Use profilers (see -prof, -lprof), design factorial

  4. experiments, perform baseline and negative tests that provide experimental control, make sure

  5. the benchmarking environment is safe on JVM/OS/HW level, ask for reviews from the domain experts.

  6. Do not assume the numbers tell you what you want them to tell.


  7. Benchmark                            Mode  Cnt   Score   Error   Units

  8. CoroutinesBenchmark.testCoroutines  thrpt   20  17.719 ± 2.249  ops/ms

  9. CoroutinesBenchmark.testRxJava      thrpt   20  18.151 ± 0.429  ops/ms

此基准测试采用的是 Throughput 模式,得分越高则性能越好。从得分来看,两者差距不大。(对于两者的比较,我还没有做更多的测试。)

640?wx_fmt=png

总结

基准测试有很多典型的应用场景,例如想比较某些方法的执行时间,对比接口不同实现在相同条件下的吞吐量等等。在这些场景下,使用 JMH 都是很不错的选择。

关注【Java与Android技术栈】

更多精彩内容请关注扫码

640?wx_fmt=jpeg


这篇关于使用 JMH 做 Kotlin 的基准测试的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/585126

相关文章

使用Java将DOCX文档解析为Markdown文档的代码实现

《使用Java将DOCX文档解析为Markdown文档的代码实现》在现代文档处理中,Markdown(MD)因其简洁的语法和良好的可读性,逐渐成为开发者、技术写作者和内容创作者的首选格式,然而,许多文... 目录引言1. 工具和库介绍2. 安装依赖库3. 使用Apache POI解析DOCX文档4. 将解析

Qt中QUndoView控件的具体使用

《Qt中QUndoView控件的具体使用》QUndoView是Qt框架中用于可视化显示QUndoStack内容的控件,本文主要介绍了Qt中QUndoView控件的具体使用,具有一定的参考价值,感兴趣的... 目录引言一、QUndoView 的用途二、工作原理三、 如何与 QUnDOStack 配合使用四、自

C++使用printf语句实现进制转换的示例代码

《C++使用printf语句实现进制转换的示例代码》在C语言中,printf函数可以直接实现部分进制转换功能,通过格式说明符(formatspecifier)快速输出不同进制的数值,下面给大家分享C+... 目录一、printf 原生支持的进制转换1. 十进制、八进制、十六进制转换2. 显示进制前缀3. 指

使用Python构建一个Hexo博客发布工具

《使用Python构建一个Hexo博客发布工具》虽然Hexo的命令行工具非常强大,但对于日常的博客撰写和发布过程,我总觉得缺少一个直观的图形界面来简化操作,下面我们就来看看如何使用Python构建一个... 目录引言Hexo博客系统简介设计需求技术选择代码实现主框架界面设计核心功能实现1. 发布文章2. 加

shell编程之函数与数组的使用详解

《shell编程之函数与数组的使用详解》:本文主要介绍shell编程之函数与数组的使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录shell函数函数的用法俩个数求和系统资源监控并报警函数函数变量的作用范围函数的参数递归函数shell数组获取数组的长度读取某下的

使用Python开发一个带EPUB转换功能的Markdown编辑器

《使用Python开发一个带EPUB转换功能的Markdown编辑器》Markdown因其简单易用和强大的格式支持,成为了写作者、开发者及内容创作者的首选格式,本文将通过Python开发一个Markd... 目录应用概览代码结构与核心组件1. 初始化与布局 (__init__)2. 工具栏 (setup_t

Python虚拟环境终极(含PyCharm的使用教程)

《Python虚拟环境终极(含PyCharm的使用教程)》:本文主要介绍Python虚拟环境终极(含PyCharm的使用教程),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录一、为什么需要虚拟环境?二、虚拟环境创建方式对比三、命令行创建虚拟环境(venv)3.1 基础命令3

Python Transformer 库安装配置及使用方法

《PythonTransformer库安装配置及使用方法》HuggingFaceTransformers是自然语言处理(NLP)领域最流行的开源库之一,支持基于Transformer架构的预训练模... 目录python 中的 Transformer 库及使用方法一、库的概述二、安装与配置三、基础使用:Pi

关于pandas的read_csv方法使用解读

《关于pandas的read_csv方法使用解读》:本文主要介绍关于pandas的read_csv方法使用,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录pandas的read_csv方法解读read_csv中的参数基本参数通用解析参数空值处理相关参数时间处理相关

使用Node.js制作图片上传服务的详细教程

《使用Node.js制作图片上传服务的详细教程》在现代Web应用开发中,图片上传是一项常见且重要的功能,借助Node.js强大的生态系统,我们可以轻松搭建高效的图片上传服务,本文将深入探讨如何使用No... 目录准备工作搭建 Express 服务器配置 multer 进行图片上传处理图片上传请求完整代码示例