md-shadman / CSE707_G4

0 stars 0 forks source link

Run code parallelly on separate VM #3

Open debalinabarua opened 3 years ago

debalinabarua commented 3 years ago

Sir,

We are confused on how to parallelly run three parts of our code that solves the problem (Gaussian Elimination and Convex Hull), on three different VMs. It would be great if you could suggest us on how we could attempt to do this.

Thank you.

bkmgit commented 3 years ago

You will need to make your code parallel.

bkmgit commented 3 years ago

If you are mostly going to use Python, take a look at MPI4PY documentation at https://mpi4py.readthedocs.io/en/stable/

If you will consider other languages such as C, C++, Julia, Java, Fortran, Go, can suggest other tutorials.

debalinabarua commented 3 years ago

Thank you so much for your feedback sir.