-
Enhancement
-
Resolution: Duplicate
-
P3
-
hs23, 9, 10
-
generic
-
generic
Changes for 6340864 (add vectorized arithmetic) will not vectorize sum of arrays's elements loop:
int x = 0;
int[] a = new int[10000];
for(int i=0; i < a.length; i++) {
x += a[i];
}
This RFE is filed to implement it.
int x = 0;
int[] a = new int[10000];
for(int i=0; i < a.length; i++) {
x += a[i];
}
This RFE is filed to implement it.
- duplicates
-
JDK-8074981 Integer/FP scalar reduction optimization
- Resolved
- relates to
-
JDK-8345044 Sum of array elements not vectorized
- Open
-
JDK-6340864 Implement vectorization optimizations in hotspot-server
- Resolved