1
2 @Benchmark
3 public void [[TEST]][[TEST_TYPE]][[OP_NAME]]Lanes(Blackhole bh) {
4 $type$[] a = fa.apply(SPECIES.length());
5 $type$ ra = [[TEST_INIT]];
6
7 for (int ic = 0; ic < INVOC_COUNT; ic++) {
8 ra = [[TEST_INIT]];
9 for (int i = 0; i < a.length; i += SPECIES.length()) {
10 $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i);
11 ra = [[TEST_OP]](ra, av.reduceLanes(VectorOperators.[[TEST]]));
12 }
13 }
14 bh.consume(ra);
15 }