(no title)
rkevingibson | 1 year ago
[1] https://github.com/ProfJski/FloatCompMandelbrot/blob/master/... [2] https://pharr.org/matt/blog/2019/11/03/difference-of-floats
rkevingibson | 1 year ago
[1] https://github.com/ProfJski/FloatCompMandelbrot/blob/master/... [2] https://pharr.org/matt/blog/2019/11/03/difference-of-floats
fanf2|1 year ago
The deep zoom mathematics includes techniques for introspecting the iterations to detect glitches, which need extra multiprecision anchor points to be calculated.
https://mathr.co.uk/blog/2021-05-14_deep_zoom_theory_and_pra...
https://dirkwhoffmann.github.io/DeepDrill/docs/Theory/Mandel...
In my experience of non-deep-zoom rendering, and contrary to the authors arguments, period detection works well for speeding up renders. It appeared to be fairly safe from false positives. https://dotat.at/@/2010-11-16-interior-iteration-with-less-p... https://dotat.at/prog/mandelbrot/cyclic.png
infogulch|1 year ago
The perturbation technique is interesting. Calculating just a few points with super high precision and then filling the pixels in between by adding an offset and continuing with lower precision halfway though the calculation seems plausible at a glance, but I'll have to read that more carefully later.
Thanks for sharing!
firebot|1 year ago
sim7c00|1 year ago
teo_zero|1 year ago
jacobolus|1 year ago
And if only we could effectively use FMAs from javascript...