Julia and Mojo (Modular) Mandelbrot Benchmark

Julia & Mojo Mandelbrot Benchmark.
For those of you who aren’t aware, the Mojo SDK was recently released, so I thought I would take the opportunity to start benchmarking some Julia code against Mojo. As a first test, I am calculating the Mandelbrot set using the code provided by Modular. This is my Julia implementation: using Plots const xn = 960 const yn = 960 const xmin = -2.0 const xmax = 0.6 const ymin = -1.5 const ymax = 1.5 const MAX_ITERS = 200 function mandelbrot_kernel(c) z = c for i = 1:MAX_ITERS z …

Read in full here:

This thread was posted by one of our members via one of our news source trackers.