forked from Dragicafit/JIT-GraalVM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Blender5.java
41 lines (35 loc) · 842 Bytes
/
Blender5.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
public class Blender5 {
private static class Color {
double r;
private Color(double r) {
this.r = r;
}
public void add(Color other) {
r += other.r;
}
}
private static final Color[][][] colors = new Color[100][100][100];
public static void main(String[] args) {
for (int j = 0; j < 10; j++) {
long t = System.nanoTime();
for (int i = 0; i < 100; i++) {
initialize(new Color(j / 20));
}
long d = System.nanoTime() - t;
System.out.println(d / 1_000_000 + " ms");
}
}
private static void initialize(Color id) {
for (int x = 0; x < colors.length; x++) {
Color[][] plane = colors[x];
for (int y = 0; y < plane.length; y++) {
Color[] row = plane[y];
for (int z = 0; z < row.length; z++) {
Color color = new Color(x);
color.add(id);
row[z] = color;
}
}
}
}
}