< prev index next >

test/jdk/jdk/incubator/vector/templates/Kernel-Binary-mem-op.template

Print this page

1         $type$[] a = fa.apply(SPECIES.length());
2         $type$[] r = fr.apply(SPECIES.length());
3 
4         for (int ic = 0; ic < INVOC_COUNT; ic++) {
5             for (int i = 0; i < a.length; i += SPECIES.length()) {
6                 $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i);
7                 av.lanewise(VectorOperators.[[TEST]], bv_[[TEST]]).intoArray(r, i);
8             }
9         }

1         $type$[] a = fa.apply(SPECIES.length());
2         $type$[] r = fr.apply(SPECIES.length());
3 
4         for (int ic = 0; ic < INVOC_COUNT; ic++) {
5             for (int i = 0; i < a.length; i += SPECIES.length()) {
6                 $abstractvectortype$ av = $abstractvectortype$.fromArray(SPECIES, a, i);
7                 av.lanewise(VectorOperators.[[TEST]], bcast_vec).intoArray(r, i);
8             }
9         }
< prev index next >