-
Notifications
You must be signed in to change notification settings - Fork 143
/
Copy path9.cs
89 lines (85 loc) · 2.99 KB
/
9.cs
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
/* The Computer Language Benchmarks Game
https://salsa.debian.org/benchmarksgame-team/benchmarksgame/
started with Java #2 program (Krause/Whipkey/Bennet/AhnTran/Enotus/Stalcup)
adapted for C# by Jan de Vaan
simplified and optimised to use TPL by Anthony Lloyd
optimized to use Vector<double> by Tanner Gooding
small optimisations by Anthony Lloyd
modified by Grigory Perepechko
removed parallelization by hanabi1224
*/
using System;
using System.Numerics;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
using System.Text;
public class MandelBrot
{
[MethodImpl(MethodImplOptions.AggressiveInlining)]
static unsafe byte GetByte(double* pCrb, double Ciby)
{
var res = 0;
for (var i = 0; i < 8; i += 2)
{
var vCrbx = Unsafe.Read<Vector<double>>(pCrb + i);
var vCiby = new Vector<double>(Ciby);
var Zr = vCrbx;
var Zi = vCiby;
int b = 0, j = 49;
do
{
for (int counter = 0; counter < 7; counter++)
{
var nZr = Zr * Zr - Zi * Zi + vCrbx;
var ZrZi = Zr * Zi;
Zi = ZrZi + ZrZi + vCiby;
Zr = nZr;
j--;
}
var t = Zr * Zr + Zi * Zi;
if (t[0] > 4.0) { b |= 2; if (b == 3) break; }
if (t[1] > 4.0) { b |= 1; if (b == 3) break; }
} while (j > 0);
res = (res << 2) + b;
}
return (byte)(res ^ -1);
}
public static unsafe void Main(string[] args)
{
var size = args.Length == 0 ? 200 : int.Parse(args[0]);
// Ensure image_Width_And_Height are multiples of 8.
size = (size + 7) / 8 * 8;
Console.Out.WriteAsync(String.Concat("P4\n", size, " ", size, "\n"));
var Crb = new double[size + 2];
var lineLength = size >> 3;
var data = new byte[size * lineLength];
fixed (double* pCrb = &Crb[0])
fixed (byte* pdata = &data[0])
{
var value = new Vector<double>(
new double[] { 0, 1, 0, 0, 0, 0, 0, 0 }
);
var invN = new Vector<double>(2.0 / size);
var onePtFive = new Vector<double>(1.5);
var step = new Vector<double>(2);
for (var i = 0; i < size; i += 2)
{
Unsafe.Write(pCrb + i, value * invN - onePtFive);
value += step;
}
var _Crb = pCrb;
var _pdata = pdata;
for (var y = 0; y < size; y++)
{
var Ciby = _Crb[y] + 0.5;
for (var x = 0; x < lineLength; x++)
{
_pdata[y * lineLength + x] = GetByte(_Crb + x * 8, Ciby);
}
}
using var hasher = MD5.Create();
var hash = hasher.ComputeHash(data);
Console.WriteLine(Convert.ToHexStringLower(hash));
}
}
}