Parallel Virtual Machine

Parallel Virtual Machine (PVM) is a software tool for parallel networking of computers. It is designed to allow a network of heterogeneous Unix and/or Windows machines to be used as a single distributed parallel processor. Thus large computational problems can be solved more cost effectively by using the aggregate power and memory of many computers. The software is very portable; the source code, available free through netlib, has been compiled on everything from laptops to Crays.[2]

Parallel Virtual Machine
Original author(s)Oak Ridge National Laboratory
Developer(s)University of Tennessee
Initial release1989
Stable release
3.4.6 / February 2, 2009 (2009-02-02)[1]
Written inC
Operating systemWindows and Unix
LicenseBSD, GPL
Websitehttp://www.csm.ornl.gov/pvm/

PVM enables users to exploit their existing computer hardware to solve much larger problems at less additional cost. PVM has been used as an educational tool to teach parallel programming but has also been used to solve important practical problems.[2] It was developed by the University of Tennessee, Oak Ridge National Laboratory and Emory University. The first version was written at ORNL in 1989, and after being rewritten by University of Tennessee, version 2 was released in March 1991. Version 3 was released in March 1993, and supported fault tolerance and better portability.

PVM was a step towards modern trends in distributed processing and grid computing but has, since the mid-1990s, largely been supplanted by the much more successful MPI standard for message passing on parallel machines. PVM is free software, released under both the BSD License and the GNU General Public License.

Design

PVM is a software system that enables a collection of heterogeneous computers to be used as a coherent and flexible concurrent computational resource, or a "parallel virtual machine".

The individual computers may be shared-memory or local-memory multiprocessors, vector supercomputers, specialized graphics engines, or scalar workstations and PCs, that may be interconnected by a variety of networks, such as Ethernet or FDDI.

PVM consists of a run-time environment and library for message-passing, task and resource management, and fault notification. While PVM will not automatically make a commercial software package run faster, it does provide a powerful set of functions for manually parallelizing an existing source program, or for writing new parallel/distributed programs.

The PVM software must be specifically installed on every machine that is to be used in a given "virtual machine". There is no "automatic" installation of executables onto remote machines in PVM, although simply copying the pvm3/lib and pvm3/bin directories to another similar machine (and setting $PVM_ROOT and $PVM_ARCH) is sufficient for running PVM programs. Compiling or building PVM programs requires the full PVM installation.

User programs written in C, C++, or Fortran can access PVM through provided library routines.

PVM also supports broadcasting (PVM_bcast) which sends to all processes in a group and multicasting (PVM_mcast) which sends to a specific list of processes.

gollark: I'm not on "Windows".
gollark: Apparently I also have half the usual upload speed for some horrible reason, so that might be causing it.
gollark: ``` 7: peer7-et-0-1-7.telehouse.ukcore.bt.net 67.970ms 8: 195.99.126.233 26.381ms asymm 7 9: 141.101.71.47 26.857ms asymm 8 10: 172.70.88.137 25.512ms asymm 9 11: 172.70.88.27 31.208ms asymm 10 12: 141.101.106.35 43.680ms asymm 11 13: 141.101.70.144 61.650ms pmtu 1476```I have no idea how to interpret this.
gollark: Usually it's my extremely janky WiFi network failing, but it seems to be working fine today. I'll tracepathize it.
gollark: It might be that, or my internet connection. I can't really tell.

See also

References

Citations

Sources

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.