This repository was archived by the owner on Oct 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMandelbrot.java
159 lines (133 loc) · 4.62 KB
/
Mandelbrot.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright © 2004-2013 Brent Fulgham
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of "The Computer Language Benchmarks Game" nor the name
// of "The Computer Language Shootout Benchmarks" nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// The Computer Language Benchmarks Game
// http://benchmarksgame.alioth.debian.org
//
// contributed by Karl von Laudermann
// modified by Jeremy Echols
// modified by Detlef Reichl
// modified by Joseph LaFata
// modified by Peter Zotov
// http://benchmarksgame.alioth.debian.org/u64q/program.php?test=mandelbrot&lang=yarv&id=3
class Mandelbrot {
public static int mandelbrot(final double size) {
int sum = 0;
int byte_acc = 0;
int bit_num = 0;
int y = 0;
while (y < size) {
double ci = (2.0 * y / size) - 1.0;
int x = 0;
while (x < size) {
double zr = 0.0;
double zrzr = 0.0;
double zi = 0.0;
double zizi = 0.0;
double cr = (2.0 * x / size) - 1.5;
int z = 0;
int escape = 1;
while (z < 50) {
double tr = zrzr - zizi + cr;
double ti = 2.0 * zr * zi + ci;
zr = tr;
zi = ti;
// preserve recalculation
zrzr = zr*zr;
zizi = zi*zi;
if (zrzr + zizi > 4.0) {
escape = 0;
break;
}
z += 1;
}
byte_acc = (byte_acc << 1) | escape;
bit_num += 1;
// Code is very similar for these cases, but using separate blocks
// ensures we skip the shifting when it's unnecessary, which is most cases.
if (bit_num == 8) {
sum ^= byte_acc;
byte_acc = 0;
bit_num = 0;
} else if (x == size - 1) {
byte_acc <<= (8 - bit_num);
sum ^= byte_acc;
byte_acc = 0;
bit_num = 0;
}
x += 1;
}
y += 1;
}
return sum;
}
public static void warmup() {
for (int n = 0; n < 10000; n++) {
mandelbrot(10);
}
}
public static boolean sample() {
return mandelbrot(750) == 192;
}
public static void main(final String[] args) {
if (!sample()) {
throw new RuntimeException();
}
int iterations = 100;
int warmup = 0;
int problemSize = 1000;
if (args.length >= 1) {
iterations = Integer.parseInt(args[0]);
}
if (args.length >= 2) {
warmup = Integer.parseInt(args[1]);
}
if (args.length >= 3) {
problemSize = Integer.parseInt(args[2]);
}
System.out.println("Overall iterations: " + iterations);
System.out.println("Warmup iterations: " + warmup);
System.out.println("Problem size: " + problemSize);
while (warmup > 0) {
mandelbrot(problemSize);
warmup--;
}
while (iterations > 0) {
long start = System.nanoTime();
mandelbrot(problemSize);
long elapsed = (System.nanoTime() - start) / 1000;
iterations--;
System.out.println("Mandelbrot: iterations=1 runtime: " +
elapsed + "us");
}
if (!sample()) {
throw new RuntimeException();
}
}
}