The JavaDoc of annotation @OperationsPerInvocation
in the Java Microbenchmarking Harness (JMH) states:
value
public abstract int value
Returns:
Number of operations per single Benchmark call. Default: 1
Being new to JMH I am wondering what type of operation (byte code operation, assembly code operation, Java operation etc) is meant here.
This question naturally refers to all places in JMH (documentation, output, comments etc) where the term 'operation' is used (e.g. "operation/time" unit or "time unit/operation").