whoami
Sindre Nistad
(pronounced similar to cinder 🔥)Developer by day, gamer by night
A (complex) number $c$ is in the Mandelbrot set if
$ |z_{n}| \le 2 $
for all $ n \ge 0 $ \[\begin{aligned} z_{0} = 0 \\ z_{n+1} = z_{n}^2 + c \end{aligned}\]
cython
# cython: profile=True
# cython: linetrace=True
# distutils: define_macros=CYTHON_TRACE_NOGIL=1
NOTE: Can be veryslow
For more information, see Cython's page on profiling
Really good at parallel 32-bit float