1
1

When the MX MTL complete a request, force a return from the progress function.

Decrease the latency by about 0.3 microseconds.

This commit was SVN r12454.
Этот коммит содержится в:
George Bosilca 2006-11-06 23:13:07 +00:00
родитель 3d0df2cf29
Коммит 108ea4dbe9

Просмотреть файл

@ -214,6 +214,7 @@ int ompi_mtl_mx_progress( void ) {
MPI_ERR_INTERN;
}
mtl_mx_request->super.completion_callback(&mtl_mx_request->super);
return completed;
}
if(OMPI_MTL_MX_IRECV == mtl_mx_request->type) {
@ -242,6 +243,7 @@ int ompi_mtl_mx_progress( void ) {
MPI_ERR_INTERN;
}
mtl_mx_request->super.completion_callback(&mtl_mx_request->super);
return completed;
}
} else {