1
35kviews
Explain the various types of Parallel Programming Models
1 Answer
| written 6.6 years ago by | • modified 6.6 years ago |
There are four types of parallel programming models:
1.Shared memory model
2.Message passing model
3.Threads model
4.Data parallel model
Explanation:
1.Shared Memory Model

In this type, the programmer views his program as collection of processes which use common or shared variables.
The processor may not have a private program or …