1 / 11

Quiz Questions ITCS 4145/5145 Spring 2012

Quiz Questions ITCS 4145/5145 Spring 2012. What is meant by a blocking message passing routine in MPI?. The routine returns when all the local actions are complete but the message transfer may not have completed. The routine returns immediately but the message transfer may not have completed.

acatalina
Télécharger la présentation

Quiz Questions ITCS 4145/5145 Spring 2012

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Quiz QuestionsITCS 4145/5145Spring 2012 ITCS 4/5145 Parallel Programming, UNC-Charlotte, B. Wilkinson, 2012, Jan 24, 2012

  2. What is meant by a blocking message passing routine in MPI? • The routine returns when all the local actions are complete but the message transfer may not have completed. • The routine returns immediately but the message transfer may not have completed. • The routine returns when the message transfer has completed. • The routine blocks all actions on other processes until it has completed its actions. • None of the other answers.

  3. What is meant by a non-blocking (or asynchronous) message passing routine in MPI? • The routine returns when all the local actions are complete but the message transfer may not have completed. • The routine returns immediately but the message transfer may not have completed. • The routine returns when the message transfer has completed. • The routine blocks all actions on other processes until it has completed its actions. • None of the other answers.

  4. In the routine:MPI_Send(message,13,MPICHAR,x,10, MPI_COMM_WORLD);when can x be altered without affecting the message being transferred? • Never. • After the routine returns, i.e. in subsequent statements • Anytime • When the message has been received • None of the other answers

  5. What does the routineMPI_Wtime() do? • Waits a specific time before returning as given by an argument. • Returns the elapsed time from some point in the past, in seconds. • Returns the elapsed time from the beginning of the program execution, in seconds. • Returns the time of the process execution. • Returned the actual time of day • None of the other answers.

More Related