Design
pvm.txt
Associated article: Parallel Processing Clusters & PVM
Tags: Mobile Design
Published source code accompanying the article by David J. Powers in which he examines the Parallel Virtual Machine, a network clustering software that provides a scalable network for parallel processing. Also see PVM.ZIP.
Parallel Processing Clusters & PVM
by David J. Powers
Example 1:
Loop n times
{
spawn child task;
send message to child;
receive result from child; // blocking operation
}
Example 2:
Loop n times
{
// asynchronous (non-blocking) operations
spawn child task;
send message to child;
}
...


