SLAC Legion programming test instructions Write a Legion program to compute the Mandelbrot set for a 32x32 pixel image centered at the origin. You will find a good description of the Mandelbrot algorithm here: http://jonisalonen.com/2013/lets-draw-the-mandelbrot-set/ Start with the existing files mandelbrot.cc and Makefile. Your results should be written to a 32x32 pixel logical region with a single field "BIT". When the computation is finished pass the logical region to the file_task. This will write the result of a PBM file. You can convert the PBM file to a PNG or JPG to view it. Please use the online documentation and tutorials at legion.stanford.edu as reference. Please don't be afraid to ask us for help or advice. Also be aware that sometimes the documentation is incomplete and you have to ask. If you run out of time please do the best you can and we will review your results. to build the program type "make" to run the program type "./mandelbrot"