Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the PVM (parallel virtual machine) library widely used in HPC?

Has everyone migrated to MPI (message passing interface) or is PVM still widely used in supercomputers and HPC?

like image 703
joemoe Avatar asked Dec 10 '22 18:12

joemoe


2 Answers

My experience is that PVM is not widely utilized in high-performance computing. MPI seems widely used and something like co-array Fortran might be the path forward for massively parallel systems of the future.

I use a library called InterComm to couple physics models together as separate executables. InterComm currently utilizes PVM for communication between these coupled models. PVM and InterComm boast that they work on homogeneous and heterogeneous network environments (I've been told MPI does not support heterogeneous compute/network environments). However, this is a feature that we've never used (and I highly doubt we ever will).

I have had a difficult time running PVM on academic compute environments. Some sys-admin/support-type people at reputable national computing centers have even suggested that we "simply" re-code our 20 year-old O(10^4) line code to use MPI because of issues we ran into while porting the code to a particular supercomputer in which the router/queing environment didn't like launching multiple parallel executables alongside PVM.

If you're at the architecture/design stage of a project, I'd recommend staying away from PVM unless you need to work on heterogeneous compute/network environments!

like image 167
Pete Avatar answered Jan 17 '23 16:01

Pete


It may be highly site-dependent but in my experience MPI completely dominates PVM in the (academic at least) HPC space. You can't realistically launch a new HPC interconnect without MPI support but PVM seems to be decidedly optional. Is there a PVM implementation for Infiniband for instance?

like image 37
Per Knytt Avatar answered Jan 17 '23 16:01

Per Knytt