Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the meaning of columns in the JMH result table?

Tags:

jmh

I don't find anything on the web about it from here, Can anyone tell me what is the meaning of ops/us, Cnt, Score, Error.

like image 468
Jary zhen Avatar asked Aug 31 '25 22:08

Jary zhen


1 Answers

  • ops/us - operations (benchmark method executions) per microsecond

  • Cnt - total number of trials (forks*iterations)

  • Score - benchmark result

  • Error - standard error value. Means how much different trials results differ

Also:

  • thrpt - Throughput mode (how much full benchmark method executions were made in a trial)
  • avgt - Average Time mode (how much measuring units took benchmark method execution on average)
like image 93
Imaskar Avatar answered Sep 13 '25 07:09

Imaskar