JavaDoc annotations @OperationsPerInvocationin Java Microbenchmarking Harness (JMH) states:
value public abstract int value
Returns:The number of operations per Benchmark call. Default: 1
Being new to JMH, I wonder what type of operation (bytecode operation, assembly code operation, Java operation, etc.) is implied here.
This question naturally applies to all places in the JMH (documentation, output, comments, etc.) Where the term “operation” is used (for example, “operation / time” or “unit of time / operation”).
source
share