The exact workflow of PVM (Parallel virtual machine)

0

These days I am learning PVM technology for concurrent processing. I go through so many blogs, tutorials to understand . Yes, I got some points, but no one gives me clear workflow of how it perform parallel processing.

Please tell me the workflow of PVM, and how it performs parallel processing.

devsda

Posted 2013-02-15T03:34:49.290

Reputation: 101

Answers

1

PVM is a message passing library for distributed programming. As such, PVM is a predecessor to Message Passing Interface (MPI). MPI has now become the de facto standard. There is a textbook I can recommend to learn about how to design programs using message passing and parallel processing, for any language and any library because it is similar for all of them. This book will help you get the fundamentals in place to understand the big picture correctly. Studying the syntax of PVM is not going to help you at this stage. This is the best textbook for self-learners. It is written by the best teacher in the field of parallel programming.

Foundations of Multithreaded, Parallel, and Distributed Programming

by Gregory Andrews

GeoffreyA

Posted 2013-02-15T03:34:49.290

Reputation: 11

ohk, I will read this definitely. If you know the workflow, can you explain that please ? – devsda – 2013-02-15T03:54:20.603