Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 781 Bytes

README.md

File metadata and controls

38 lines (22 loc) · 781 Bytes

Mandelbrot Set in 3 Ways (feat. MPI)

Mandelbrot

Quick Start

3 ways to generate 400x400 BMP image of mandelbrot set.

The executables can be downloaded at the Releases of this repository.

Execution & Sample Results

-n specifies the number of processes to be used in Static and Dynamic methods, it should be >= 2 since there's a master.

Sequential Method
> Sequential.exe

sequential

Static Method with MPI
> mpiexe -n 4 Static.exe

dynamic

Dynamic Method with MPI
> mpiexe -n 9 Dynamic.exe

static