recategorized by
3,031 views
1 votes
1 votes

Which of the following is not valid with reference to Message Passing Interface(MPI)?

  1. MPI can run on any hardware platform
  2. The programming model is a distributed memory model
  3. All parallelism is implicit
  4. MPI- Comm - Size returns the total number of MPI processes in specified communication
recategorized by

1 Answer

1 votes
1 votes

Answer must be C

  • Message Passing Interface (MPI) is a standardized and portable message-passing system
  •  it has become a de facto standard for communication among processes that model a parallel program running on a distributed memory system.
  • It can run on any hardare platform. It is Portable ,Efficient, Flexible
  • Communicator objects connect groups of processes in the MPI session. Each communicator gives each contained process an independent identifier and arranges its contained processes in an ordered topology.
  • MPI_Comm_Size returns the total number of MPI processes in specified communication

Please refer this nice article for more details

https://computing.llnl.gov/tutorials/mpi/

Answer:

Related questions

1.8k
views
2 answers
0 votes
go_editor asked Jul 31, 2016
1,789 views
Which of the following statements is incorrect for Parallel Virtual Machine (PVM)?The PVM communication model provides asynchronous blocking send, asynchronous blocking ... of such messagesIn PVM model, the message order is not preserved
5.9k
views
3 answers
6 votes
go_editor asked Jul 31, 2016
5,947 views
Which of the following statements is false about weak entity set?Weak entities can be deleted automatically when their strong entity is deletedWeak entity ... partitioned according to their relationship with tuples with a strong entity set
4.4k
views
4 answers
0 votes
go_editor asked Jul 31, 2016
4,370 views
Which of the following algorithms sort $n$ integers, having the range $0$ to $(n^2 -1)$, in ascending order in $O(n)$ time?Selection sortBubble sortRadix sortInsertion sort
3.9k
views
2 answers
0 votes
go_editor asked Jul 31, 2016
3,896 views
In the case of parallelization, Amdahl's law states that if $P$ is the proportion of a program that can be made parallel and $(1-P)$ is the proportion that cannot be parallelized, then ... P)+\frac{P}{N}} \\$\dfrac{1}{P+\frac{(1-P)}{N}}$