使用 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

相关文章

性能测试介绍

性能测试是一种测试方法,旨在评估系统、应用程序或组件在现实场景中的性能表现和可靠性。它通常用于衡量系统在不同负载条件下的响应时间、吞吐量、资源利用率、稳定性和可扩展性等关键指标。 为什么要进行性能测试 通过性能测试,可以确定系统是否能够满足预期的性能要求,找出性能瓶颈和潜在的问题,并进行优化和调整。 发现性能瓶颈:性能测试可以帮助发现系统的性能瓶颈,即系统在高负载或高并发情况下可能出现的问题

中文分词jieba库的使用与实景应用(一)

知识星球:https://articles.zsxq.com/id_fxvgc803qmr2.html 目录 一.定义: 精确模式(默认模式): 全模式: 搜索引擎模式: paddle 模式(基于深度学习的分词模式): 二 自定义词典 三.文本解析   调整词出现的频率 四. 关键词提取 A. 基于TF-IDF算法的关键词提取 B. 基于TextRank算法的关键词提取

使用SecondaryNameNode恢复NameNode的数据

1)需求: NameNode进程挂了并且存储的数据也丢失了,如何恢复NameNode 此种方式恢复的数据可能存在小部分数据的丢失。 2)故障模拟 (1)kill -9 NameNode进程 [lytfly@hadoop102 current]$ kill -9 19886 (2)删除NameNode存储的数据(/opt/module/hadoop-3.1.4/data/tmp/dfs/na

Hadoop数据压缩使用介绍

一、压缩原则 (1)运算密集型的Job,少用压缩 (2)IO密集型的Job,多用压缩 二、压缩算法比较 三、压缩位置选择 四、压缩参数配置 1)为了支持多种压缩/解压缩算法,Hadoop引入了编码/解码器 2)要在Hadoop中启用压缩,可以配置如下参数

Makefile简明使用教程

文章目录 规则makefile文件的基本语法:加在命令前的特殊符号:.PHONY伪目标: Makefilev1 直观写法v2 加上中间过程v3 伪目标v4 变量 make 选项-f-n-C Make 是一种流行的构建工具,常用于将源代码转换成可执行文件或者其他形式的输出文件(如库文件、文档等)。Make 可以自动化地执行编译、链接等一系列操作。 规则 makefile文件

字节面试 | 如何测试RocketMQ、RocketMQ?

字节面试:RocketMQ是怎么测试的呢? 答: 首先保证消息的消费正确、设计逆向用例,在验证消息内容为空等情况时的消费正确性; 推送大批量MQ,通过Admin控制台查看MQ消费的情况,是否出现消费假死、TPS是否正常等等问题。(上述都是临场发挥,但是RocketMQ真正的测试点,还真的需要探讨) 01 先了解RocketMQ 作为测试也是要简单了解RocketMQ。简单来说,就是一个分

使用opencv优化图片(画面变清晰)

文章目录 需求影响照片清晰度的因素 实现降噪测试代码 锐化空间锐化Unsharp Masking频率域锐化对比测试 对比度增强常用算法对比测试 需求 对图像进行优化,使其看起来更清晰,同时保持尺寸不变,通常涉及到图像处理技术如锐化、降噪、对比度增强等 影响照片清晰度的因素 影响照片清晰度的因素有很多,主要可以从以下几个方面来分析 1. 拍摄设备 相机传感器:相机传

pdfmake生成pdf的使用

实际项目中有时会有根据填写的表单数据或者其他格式的数据,将数据自动填充到pdf文件中根据固定模板生成pdf文件的需求 文章目录 利用pdfmake生成pdf文件1.下载安装pdfmake第三方包2.封装生成pdf文件的共用配置3.生成pdf文件的文件模板内容4.调用方法生成pdf 利用pdfmake生成pdf文件 1.下载安装pdfmake第三方包 npm i pdfma

零基础学习Redis(10) -- zset类型命令使用

zset是有序集合,内部除了存储元素外,还会存储一个score,存储在zset中的元素会按照score的大小升序排列,不同元素的score可以重复,score相同的元素会按照元素的字典序排列。 1. zset常用命令 1.1 zadd  zadd key [NX | XX] [GT | LT]   [CH] [INCR] score member [score member ...]

【测试】输入正确用户名和密码,点击登录没有响应的可能性原因

目录 一、前端问题 1. 界面交互问题 2. 输入数据校验问题 二、网络问题 1. 网络连接中断 2. 代理设置问题 三、后端问题 1. 服务器故障 2. 数据库问题 3. 权限问题: 四、其他问题 1. 缓存问题 2. 第三方服务问题 3. 配置问题 一、前端问题 1. 界面交互问题 登录按钮的点击事件未正确绑定,导致点击后无法触发登录操作。 页面可能存在