1     @Benchmark
 2     public void [[TEST]][[TEST_TYPE]][[OP_NAME]](Blackhole bh) {
 3         $type$[] as = fa.apply(size);
 4         $type$[] rs = fr.apply(size);
 5 
 6         for (int ic = 0; ic < INVOC_COUNT; ic++) {
 7             for (int i = 0; i < as.length; i++) {
 8                 $type$ a = as[i];
 9                 rs[i] = ($type$)([[TEST_OP]]);
10             }
11         }
12 
13         bh.consume(rs);
14     }