recategorized by
2,919 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

0 votes
0 votes
4 answers
3
go_editor asked Jul 31, 2016
3,909 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 so...