Message Passing Interface is a paradigm used widely for parallel programming especially on machines with distributed memory. It is a standardized and portable message passing system.
For compiling this MPI code execute following commands:
mpic++ <filename.cpp> -o <object_name>
mpirun -np <no_of_processes_needed> ./<object_name>
For compiling this MPI code execute following commands:
mpic++ <filename.cpp> -o <object_name>
mpirun -np <no_of_processes_needed> ./<object_name>
No comments:
Post a Comment