< prev index next >

test/jdk/jdk/incubator/vector/templates/Perf-Scalar-Ternary-Masked-op.template

Print this page
rev 55606 : 8221812: Fine-tune jmh test for vector api
Summary: To compare performance of vector api and auto vectorization, vector
api and scalar test cases are updated to keep aligned.
Reviewed-by: duke

@@ -1,21 +1,23 @@
 
     @Benchmark
-    public Object [[TEST]][[TEST_TYPE]][[OP_NAME]]() {
+    public void [[TEST]][[TEST_TYPE]][[OP_NAME]](Blackhole bh) {
         $type$[] as = fa.apply(size);
         $type$[] bs = fb.apply(size);
         $type$[] cs = fc.apply(size);
         $type$[] rs = fr.apply(size);
         boolean[] ms = fm.apply(size);
 
+        for (int ic = 0; ic < INVOC_COUNT; ic++) {
         for (int i = 0; i < as.length; i++) {
             $type$ a = as[i];
             $type$ b = bs[i];
             $type$ c = cs[i];
             if (ms[i % ms.length]) {
                 rs[i] = ($type$)([[TEST_OP]]);
             } else {
                 rs[i] = a;
             }
         }
-        return rs;
+        }
+        bh.consume(rs);
     }
< prev index next >