summaryrefslogtreecommitdiffstats
path: root/testpar/t_select_io_dset.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix failure in t_select_io_dset when run with more than 10 ranks (#3758)Neil Fortner2023-10-241-2/+28
|
* Add new API function H5Pget_actual_select_io_mode() (#2974)Neil Fortner2023-10-201-264/+377
| | | This function allows the user to determine if the library performed selection I/O, vector I/O, or scalar (legacy) I/O during the last HDF5 operation performed with the provided DXPL. Expanded existing tests to check this functionality.
* Strip HD prefix from string/char C API calls (#3540)Dana Robinson2023-09-151-27/+27
| | | | | | | | | | | | | | | | | | | | | * Strip HD prefix from string/char C API calls * HD(f)(put|get)(s|c) * HDstr* * HDv*printf * HD(s)(print|scan)f * HDperror But NOT: * HDstrcase* * HDvasprintf * HDstrtok_r * HDstrndup As those are not C99 and have portability work-around implementations. They will be handled later. * Fix th5_system.c screwup
* Convert hbool_t --> bool in testpar (#3495)Dana Robinson2023-09-051-6/+6
|
* Implementation of the mpio driver with selection I/O. (#3222)vchoi-hdfgroup2023-08-071-10/+407
| | | | * This changes the default selection I/O to on for MPIO.
* Remove HD from HDmem* calls (#3211)Dana Robinson2023-06-291-53/+51
|
* Remove HD from memory allocate/free calls (#3195)Dana Robinson2023-06-281-102/+102
| | | | | | * HDcalloc * HDfree * HDmalloc * HDrealloc
* Rename HD(f)printf() to (f)printf() (#3194)Dana Robinson2023-06-281-114/+113
|
* Implement selection I/O with type conversion (#2823)Neil Fortner2023-04-281-0/+3786
Initial implementation of selection I/O with type conversion. Allows Parallel collective I/O with type conversion, as long as selection I/O is enabled.