You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The timings of the mandelbrot calculations are not consistent between all languages. In some (C, Rust), the timings include summing the total number of iterations over the specified grid and asserting that number is 14791. In others (Python, Julia), the timings only include iterating over the grid, not the sum or assertion. Some languages repeat mandelperf 100 times and return total time / 100, others return the time for a single run.