changing z = z * z + c
to z = muladd(z, z, c)
gets about 25% faster right off the bat
9 Likes
changing z = z * z + c
to z = muladd(z, z, c)
gets about 25% faster right off the bat