MPISTATUSIGNORE
MPI_STATUS_IGNORE is a predefined constant in the MPI (Message Passing Interface) standard. It indicates that the status argument of an MPI function is not required or that no status information should be returned. It is commonly used when a program does not need details about the received message, such as its source, tag, or condition of delivery.
In C and C++, MPI_STATUS_IGNORE is passed in place of a pointer to an MPI_Status for the
MPI_STATUS_IGNORE is defined in mpi.h and is implementation-defined in its exact representation. It should not be
In Fortran bindings, MPI_STATUS_IGNORE and MPI_STATUSES_IGNORE fulfill the same role, allowing programs to omit status information