Skip to content

Commit cf2fc8d

Browse files
committed
squashme: pr feedback
Signed-off-by: Howard Pritchard <[email protected]>
1 parent 4156ff0 commit cf2fc8d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/man-openmpi/man3/MPI_Comm_flush_buffer.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ DESCRIPTION
3030

3131
:ref:`MPI_Comm_flush_buffer` will not return until all messages currently in the communicator-
3232
specific buffer of the calling MPI process have been transmitted. The non-blocking variant
33-
:ref:`MPI_Comm_iflush_buffer` returns a MPI request that can be queried using MPI request
33+
:ref:`MPI_Comm_iflush_buffer` returns an MPI request that can be queried using MPI request
3434
status functions to determine when all messages in the communicator-specific buffer of the
3535
call MPI process have been transmitted.
3636

ompi/mca/pml/base/pml_base_bsend.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,11 @@ int mca_pml_base_bsend_attach(ompi_bsend_buffer_type_t type, void *obj, void* ad
269269
NULL,
270270
buf_instance);
271271
} else {
272+
/*
273+
* TODO: this is where we might want to enhance the allocator type based off of, perhaps
274+
* presence of certain keys in the info object bound to the communicator in the case of COMM_BSEND_BUF
275+
* buffering.
276+
*/
272277
buf_instance->bsend_allocator = mca_pml_bsend_allocator_component->allocator_init(ompi_mpi_thread_multiple,
273278
mca_pml_bsend_alloc_seg_auto,
274279
mca_pml_bsend_dealloc_seg_auto,

0 commit comments

Comments
 (0)