So the MCA parameter that you mention is explained at the link below:
  http://osl.iu.edu/research/ft/ompi-cr/api.php#mca-opal_cr_use_thread

This enables/disables the C/R thread a runtime if Open MPI was configured with C/R thread support:
  http://osl.iu.edu/research/ft/ompi-cr/api.php#conf-enable-ft-thread

The C/R thread enables asynchronous processing of checkpoint requests when the application process is not inside the MPI library. The purpose of this thread is to improve the responsiveness of the checkpoint operation. Without the thread, if the application is in a computation loop then the checkpoint will be delayed until the process enters the MPI library. With the thread enabled, the checkpoint will start in the C/R thread if the application is not in the MPI library.

The primary advantages of the C/R thread are:
- Response time to the C/R request since the checkpoint is not delayed until the process enters the MPI library, - Asynchronous processing of the checkpoint while the application is executing outside the MPI library (improves the checkpoint overhead experienced by the process).

The primary disadvantage of the C/R thread is the additional processing task running in parallel with the application. If the C/R thread is polling too often it could slow down the main process by forcing frequent context switches between the C/R thread and the main execution thread. You can adjust the aggressiveness by adjusting the parameters at the link below:
  http://osl.iu.edu/research/ft/ompi-cr/api.php#mca-opal_cr_thread_sleep_check

-- Josh

On Mar 24, 2010, at 11:24 AM, <ananda.mu...@wipro.com> <ananda.mu...@wipro.com > wrote:

The description for MCA parameter “opal_cr_use_thread” is very short at URL: http://osl.iu.edu/research/ft/ompi-cr/api.php

Can someone explain the usefulness of enabling this parameter vs disabling it? In other words, what are pros/cons of disabling it?

I found that this gets enabled automatically when openmpi library is configured with –ft-enable-threads option.

Thanks
Ananda
Please do not print this email unless it is absolutely necessary.

The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments.

WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email.

www.wipro.com

_______________________________________________
users mailing list
us...@open-mpi.org
http://www.open-mpi.org/mailman/listinfo.cgi/users


Reply via email to