A repository to learn about SimGrid, MPI, Distributed Applications and more.
https://simgrid.github.io/SMPI_CourseWare/
I'm following this tutorial to learn about SimGrid, SMPI and more.
Compile and execute:
cd juliaset/
make sequential
./sequential N
Where N is a natural positve number that represents the height of the generated image.
Compile and execute:
cd juliaset/
make 1d
smpirun -np 10 -hostfile ./simple_cluster_hostfile.txt -platform ./simple_cluster.xml ./1D_parallel_julia N
Where N is a natural positve number that represents the height of the generated image. And also, -np parameter should be divisor of N.
Compile and execute:
cd juliaset/
make 2d
smpirun -np 9 -hostfile ./simple_cluster_hostfile.txt -platform ./simple_cluster.xml ./2D_parallel_julia N
Where N is a natural positve number that represents the height of the generated image. And also, the square root of the -np parameter should be divisor of N.
MIT License. Click here for more information.