C implementation of matrix multiplication program with message passing interface (MPI)
First install MPI, I used MPICH.
$ mpicc mpi-mult.c -o mpimult
$ mpirun -np <host-number> --hostfile <hosts-file> ./mpimult
Maria Oikonomidou
Implementation of matrix multiplication program with message passing
C
C implementation of matrix multiplication program with message passing interface (MPI)
First install MPI, I used MPICH.
$ mpicc mpi-mult.c -o mpimult
$ mpirun -np <host-number> --hostfile <hosts-file> ./mpimult
Maria Oikonomidou