Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate MPI without MPI I/O #171

Merged
24 changes: 0 additions & 24 deletions src/sc_scda.h
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,6 @@ sc_scda_fopen_options_t; /**< type for \ref sc_scda_fopen_options */
* [preprint](https://doi.org/10.48550/arXiv.2307.06789).
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent errors.
*
* \param [in] mpicomm The MPI communicator that is used to open the
* parallel file.
Expand Down Expand Up @@ -348,8 +347,6 @@ sc_scda_fcontext_t *sc_scda_fopen_write (sc_MPI_Comm mpicomm,
* All parameters except of \b data are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_write.
Expand Down Expand Up @@ -394,8 +391,6 @@ sc_scda_fcontext_t *sc_scda_fwrite_inline (sc_scda_fcontext_t * fc,
* All parameters except of \b block_data are collective.
*
* This function returns NULL on MPI I/O errors.
cburstedde marked this conversation as resolved.
Show resolved Hide resolved
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_write.
Expand Down Expand Up @@ -456,8 +451,6 @@ sc_scda_fcontext_t *sc_scda_fwrite_block (sc_scda_fcontext_t * fc,
* All parameters except of \b array_data are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_write.
Expand Down Expand Up @@ -569,8 +562,6 @@ int sc_scda_proc_sizes (sc_array_t * elem_sizes,
* All parameters except of \b array_data and \b elem_sizes are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_write.
Expand Down Expand Up @@ -673,7 +664,6 @@ sc_scda_fcontext_t *sc_scda_fwrite_varray (sc_scda_fcontext_t * fc,
* [preprint](https://doi.org/10.48550/arXiv.2307.06789).
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent errors.
*
* \param [in] mpicomm The MPI communicator that is used to open the
* parallel file.
Expand Down Expand Up @@ -716,8 +706,6 @@ sc_scda_fcontext_t *sc_scda_fopen_read (sc_MPI_Comm mpicomm,
* All parameters are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -785,8 +773,6 @@ sc_scda_fcontext_t *sc_scda_fread_section_header (sc_scda_fcontext_t * fc,
* All parameters except of \b data are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -821,8 +807,6 @@ sc_scda_fcontext_t *sc_scda_fread_inline_data (sc_scda_fcontext_t * fc,
* All parameters except of \b data_block are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -863,8 +847,6 @@ sc_scda_fcontext_t *sc_scda_fread_block_data (sc_scda_fcontext_t * fc,
* All parameters except of \b array_data are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -927,8 +909,6 @@ sc_scda_fcontext_t *sc_scda_fread_array_data (sc_scda_fcontext_t * fc,
* All parameters except of \b elem_sizes are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -976,8 +956,6 @@ sc_scda_fcontext_t *sc_scda_fread_varray_sizes (sc_scda_fcontext_t * fc,
* All parameters except of \b array_data and \b elem_sizes are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously opened by \ref
* sc_scda_fopen_read.
Expand Down Expand Up @@ -1092,8 +1070,6 @@ int sc_scda_ferror_string (sc_scda_ferror_t errcode, char *str,
* All parameters are collective.
*
* This function returns NULL on MPI I/O errors.
* Without MPI the function may abort on file system dependent
* errors.
*
* \param [in,out] fc File context previously created by
* \ref sc_scda_fopen_write or \ref
Expand Down
Loading