My Project
programmer's documentation
|
Go to the source code of this file.
Typedefs | |
typedef struct _cs_file_t | cs_file_t |
typedef struct _cs_file_serializer_t | cs_file_serializer_t |
typedef long long | cs_file_off_t |
Enumerations | |
enum | cs_file_mode_t { CS_FILE_MODE_READ, CS_FILE_MODE_WRITE, CS_FILE_MODE_APPEND } |
File acces modes. More... | |
enum | cs_file_seek_t { CS_FILE_SEEK_SET, CS_FILE_SEEK_CUR, CS_FILE_SEEK_END } |
seek semantics (third argument of cs_file_seek) More... | |
enum | cs_file_access_t { CS_FILE_DEFAULT, CS_FILE_STDIO_SERIAL, CS_FILE_STDIO_PARALLEL, CS_FILE_MPI_INDEPENDENT, CS_FILE_MPI_NON_COLLECTIVE, CS_FILE_MPI_COLLECTIVE } |
Shared file access methods. More... | |
enum | cs_file_mpi_positionning_t { CS_FILE_MPI_EXPLICIT_OFFSETS, CS_FILE_MPI_INDIVIDUAL_POINTERS } |
MPI-IO positionning methods. More... | |
Functions | |
cs_file_t * | cs_file_open (const char *name, cs_file_mode_t mode, cs_file_access_t method, MPI_Info hints, MPI_Comm block_comm, MPI_Comm comm) |
Create a file descriptor and open the associated file. More... | |
cs_file_t * | cs_file_open_default (const char *name, cs_file_mode_t mode) |
Create a file descriptor and open the associated file, using the default file communicator and access method. More... | |
cs_file_t * | cs_file_open_serial (const char *name, cs_file_mode_t mode) |
Create a file descriptor and open the associated file, using the serial IO on the root rank. More... | |
cs_file_t * | cs_file_free (cs_file_t *f) |
Destroy a file descriptor and close the associated file. More... | |
const char * | cs_file_get_name (const cs_file_t *f) |
Return a file's name. More... | |
void | cs_file_set_big_endian (cs_file_t *f) |
Ensure that data is read or written in big-endian (network standard) format. More... | |
int | cs_file_get_swap_endian (const cs_file_t *f) |
Return a file's byte-swapping behavior. More... | |
void | cs_file_set_swap_endian (cs_file_t *f, int swap) |
Set a file's byte-swapping behavior. More... | |
size_t | cs_file_read_global (cs_file_t *f, void *buf, size_t size, size_t ni) |
Read global data from a file, distributing it to all processes associated with that file. More... | |
size_t | cs_file_write_global (cs_file_t *f, const void *buf, size_t size, size_t ni) |
Write global data to a file. More... | |
size_t | cs_file_read_block (cs_file_t *f, void *buf, size_t size, size_t stride, cs_gnum_t global_num_start, cs_gnum_t global_num_end) |
Read data to a buffer, distributing a contiguous part of it to each process associated with a file. More... | |
size_t | cs_file_write_block (cs_file_t *f, const void *buf, size_t size, size_t stride, cs_gnum_t global_num_start, cs_gnum_t global_num_end) |
Write data to a file, each associated process providing a contiguous part of this data. More... | |
size_t | cs_file_write_block_buffer (cs_file_t *f, void *buf, size_t size, size_t stride, cs_gnum_t global_num_start, cs_gnum_t global_num_end) |
Write data to a file, each associated process providing a contiguous part of this data. More... | |
int | cs_file_seek (cs_file_t *f, cs_file_off_t offset, cs_file_seek_t whence) |
Update the file pointer according to whence. More... | |
cs_file_off_t | cs_file_tell (cs_file_t *f) |
Return the position of the file pointer. More... | |
void | cs_file_dump (const cs_file_t *f) |
Dump the metadata of a file structure in human readable form. More... | |
void | cs_file_free_defaults (void) |
Free the default options for file access. More... | |
void | cs_file_get_default_access (cs_file_mode_t mode, cs_file_access_t *method, MPI_Info *hints) |
Get the default options for file access. More... | |
void | cs_file_set_default_access (cs_file_mode_t mode, cs_file_access_t method, MPI_Info hints) |
Set the default options for file access. More... | |
void | cs_file_get_default_comm (int *block_rank_step, int *block_min_size, MPI_Comm *block_comm, MPI_Comm *comm) |
Get default MPI communicator values for file access. More... | |
void | cs_file_set_default_comm (int block_rank_step, int block_min_size, MPI_Comm comm) |
Set default MPI communicator values for file access. More... | |
MPI_Comm | cs_file_block_comm (int block_rank_step, MPI_Comm comm) |
Create an MPI communicator for distributed block parallel IO. More... | |
cs_file_mpi_positionning_t | cs_file_get_mpi_io_positionning (void) |
Get the positionning method for MPI-IO. More... | |
void | cs_file_set_mpi_io_positionning (cs_file_mpi_positionning_t positionning) |
Set the positionning method for MPI-IO. More... | |
void | cs_file_defaults_info (void) |
Print information on default options for file access. More... | |
cs_file_serializer_t * | cs_file_serializer_create (size_t size, size_t stride, cs_gnum_t global_num_start, cs_gnum_t global_num_end, size_t buf_block_size, void *buf, MPI_Comm comm) |
Create a cs_file_serializer_t structure. More... | |
void | cs_file_serializer_destroy (cs_file_serializer_t **s) |
Destroy a cs_file_serializer_t structure. More... | |
void * | cs_file_serializer_advance (cs_file_serializer_t *s, cs_gnum_t cur_range[2]) |
Advance a cs_file_serializer_t structure. More... | |
int | cs_file_mkdir_default (const char *path) |
Create a new directory using default permissions. More... | |
int | cs_file_isreg (const char *path) |
Check if a file exists and is a regular file. More... | |
int | cs_file_isdir (const char *path) |
Check if a directory exists. More... | |
char ** | cs_file_listdir (const char *path) |
List files inside a directory. More... | |
cs_file_off_t | cs_file_size (const char *path) |
Return the size of a file. More... | |
int | cs_file_remove (const char *path) |
Remove a file if it exists and is a regular file. More... | |
Variables | |
const char * | cs_file_access_name [] |
const char * | cs_file_mpi_positionning_name [] |
Offset for file position indicator
typedef struct _cs_file_serializer_t cs_file_serializer_t |
File descriptor (opaque object)
enum cs_file_access_t |
Shared file access methods.
enum cs_file_mode_t |
MPI-IO positionning methods.
It is not always known whether a performance or robustness difference is to be expected using explicit file offsets or individual file pointers. Perusal of a sampling of ROMIO code would seem to indicate that no difference is to be expected, but this might change with MPI IO variants or file systems, so an advanced setting is made possible.
Enumerator | |
---|---|
CS_FILE_MPI_EXPLICIT_OFFSETS | Use explicit offsets positionning with MPI-IO |
CS_FILE_MPI_INDIVIDUAL_POINTERS | Use individual file pointer positionning with MPI-IO |
enum cs_file_seek_t |
seek semantics (third argument of cs_file_seek)
Enumerator | |
---|---|
CS_FILE_SEEK_SET | Seek from beginning of file |
CS_FILE_SEEK_CUR | Seek from current position |
CS_FILE_SEEK_END | Seek from end of file |
MPI_Comm cs_file_block_comm | ( | int | block_rank_step, |
MPI_Comm | comm | ||
) |
Create an MPI communicator for distributed block parallel IO.
[in] | block_rank_step | MPI rank stepping between non-empty blocks |
[in] | comm | Handle to main MPI communicator |
void cs_file_defaults_info | ( | void | ) |
Print information on default options for file access.
void cs_file_dump | ( | const cs_file_t * | f | ) |
Dump the metadata of a file structure in human readable form.
[in] | f | cs_file_t descriptor |
Destroy a file descriptor and close the associated file.
[in,out] | f | file descriptor to destroy |
void cs_file_free_defaults | ( | void | ) |
Free the default options for file access.
void cs_file_get_default_access | ( | cs_file_mode_t | mode, |
cs_file_access_t * | method, | ||
MPI_Info * | hints | ||
) |
Get the default options for file access.
[in] | mode | file mode for which the default is queried (write and append use the same method, and are interchangeable here) |
[out] | method | default file access method, or NULL |
[out] | hints | MPI-IO hints, or NULL |
void cs_file_get_default_comm | ( | int * | block_rank_step, |
int * | block_min_size, | ||
MPI_Comm * | block_comm, | ||
MPI_Comm * | comm | ||
) |
Get default MPI communicator values for file access.
A block rank stepping value may be used, allowing the use of a reduced communicator for distributed block reads and writes. If this value is greater than 1, ranks not a multiple of this step must be guaranteed to be empty for block reads and writes with files opened using this default.
A minimum block size target may also be used, so as to limit the number of active blocks to a value proportional to the data size (limiting latency issues for small data sets, while not requiring too much local memory).
[out] | block_rank_step | MPI rank stepping between non-empty distributed blocks, or NULL |
[out] | block_min_size | minimum block size target for non-empty distributed blocks, or NULL |
[out] | block_comm | Handle to MPI communicator used for distributed file block access, or NULL |
[out] | comm | Handle to main MPI communicator, or NULL |
cs_file_mpi_positionning_t cs_file_get_mpi_io_positionning | ( | void | ) |
Get the positionning method for MPI-IO.
For details, see cs_file_set_mpi_io_positionning.
const char* cs_file_get_name | ( | const cs_file_t * | f | ) |
Return a file's name.
[in] | f | cs_file_t descriptor |
int cs_file_get_swap_endian | ( | const cs_file_t * | f | ) |
Return a file's byte-swapping behavior.
[in] | f | cs_file_t descriptor |
int cs_file_isdir | ( | const char * | path | ) |
Check if a directory exists.
[in] | path | directory path. |
int cs_file_isreg | ( | const char * | path | ) |
Check if a file exists and is a regular file.
[in] | path | file path. |
char** cs_file_listdir | ( | const char * | path | ) |
List files inside a directory.
The array returned must be freed by the caller using BFT_FREE, as well as the individual entries in the array.
[in] | path | name of directory. |
int cs_file_mkdir_default | ( | const char * | path | ) |
Create a new directory using default permissions.
This function is similar to the POSIX function mkdir(), except that it has no "mode" argument: by default, on a POSIX type system, permissions include read, write, and execute access for the user, group and others, modified by the users umask value (so with a typical configuration, the user will have read, write, and execute pemission, the group and others will only have read and execute permission, but this behavior may be modified).
Also, contrary to the usual mkdir(), if the directory already exists (and is truly a directory), this is considered a success and not a failure, and 0 is returned: the aim of this function is to make a directory available, so if it already exists, this is considered acceptable.
[in] | path | name of new directory. |
cs_file_t* cs_file_open | ( | const char * | name, |
cs_file_mode_t | mode, | ||
cs_file_access_t | method, | ||
MPI_Info | hints, | ||
MPI_Comm | block_comm, | ||
MPI_Comm | comm | ||
) |
Create a file descriptor and open the associated file.
By default, data is written or read as native data. This behavior may be modified by cs_file_set_swap_endian().
[in] | name | file name |
[in] | mode | file acces mode: read, write, or append |
[in] | method | file access method |
[in] | hints | associated hints for MPI-IO, or MPI_INFO_NULL |
[in] | block_comm | handle to MPI communicator used for distributed file block access (may be a subset of comm if some ranks do not directly access distributed data blocks) |
[in] | comm | handle to main MPI communicator |
cs_file_t* cs_file_open_default | ( | const char * | name, |
cs_file_mode_t | mode | ||
) |
Create a file descriptor and open the associated file, using the default file communicator and access method.
By default, data is written or read as native data. This behavior may be modified by cs_file_set_swap_endian().
[in] | name | file name |
[in] | mode | file acces mode: read, write, or append |
cs_file_t* cs_file_open_serial | ( | const char * | name, |
cs_file_mode_t | mode | ||
) |
Create a file descriptor and open the associated file, using the serial IO on the root rank.
By default, data is written or read as native data. This behavior may be modified by cs_file_set_swap_endian().
[in] | name | file name |
[in] | mode | file acces mode: read, write, or append |
size_t cs_file_read_block | ( | cs_file_t * | f, |
void * | buf, | ||
size_t | size, | ||
size_t | stride, | ||
cs_gnum_t | global_num_start, | ||
cs_gnum_t | global_num_end | ||
) |
Read data to a buffer, distributing a contiguous part of it to each process associated with a file.
Each process should receive a (possibly empty) block of the data, and we should have: global_num_start at rank 0 = 1 global_num_start at rank i+1 = global_num_end at rank i. Otherwise, behavior (especially positioning for future reads) is undefined.
[in] | f | cs_file_t descriptor |
[out] | buf | pointer to location receiving data |
[in] | size | size of each item of data in bytes |
[in] | stride | number of (interlaced) values per block item |
[in] | global_num_start | global number of first block item (1 to n numbering) |
[in] | global_num_end | global number of past-the end block item (1 to n numbering) |
size_t cs_file_read_global | ( | cs_file_t * | f, |
void * | buf, | ||
size_t | size, | ||
size_t | ni | ||
) |
Read global data from a file, distributing it to all processes associated with that file.
[in] | f | cs_file_t descriptor |
[out] | buf | pointer to location receiving data |
[in] | size | size of each item of data in bytes |
[in] | ni | number of items to read |
int cs_file_remove | ( | const char * | path | ) |
Remove a file if it exists and is a regular file.
[in] | path | file path. |
int cs_file_seek | ( | cs_file_t * | f, |
cs_file_off_t | offset, | ||
cs_file_seek_t | whence | ||
) |
Update the file pointer according to whence.
[in,out] | f | cs_file_t descriptor |
[in] | offset | add to position specified to whence to obtain new position, measured in characters from the beginning of the file |
[in] | whence | beginning if CS_FILE_SEEK_SET, current if CS_FILE_SEEK_CUR, or end-of-file if CS_FILE_SEEK_END |
void* cs_file_serializer_advance | ( | cs_file_serializer_t * | s, |
cs_gnum_t | cur_range[2] | ||
) |
Advance a cs_file_serializer_t structure.
Data from the buffer of the next communicating rank is copied to rank 0 (this is a no-op the first time this function is called, as rank 0 already has its data).
On rank 0, the return value may point to the buffer defined when initializing the serializer, or to an aditional buffer if the former is too small to receive data from all ranks.
Note also that for ranks > 0, this function always returns NULL, as only one call is needed for those ranks.
[in] | s | pointer to serializer structure |
[out] | cur_range | optional start and past-the end global numbers for the current block (size: 2), or NULL; only on rank 0 |
cs_file_serializer_t* cs_file_serializer_create | ( | size_t | size, |
size_t | stride, | ||
cs_gnum_t | global_num_start, | ||
cs_gnum_t | global_num_end, | ||
size_t | buf_block_size, | ||
void * | buf, | ||
MPI_Comm | comm | ||
) |
Create a cs_file_serializer_t structure.
The buf_block_size argument is optional, and may be used when the buffer on rank 0 is larger than (global_num_end - global_num_start)*size*stride bytes. If zero, a block size of (global_num_end - global_num_start) on rank 0 is assumed; a buffer may not be smaller than this, as it must initially contain all data on rank 0's block.
[in] | size | size of each item of data in bytes |
[in] | stride | number of (interlaced) values per block item |
[in] | global_num_start | global number of first block item (1 to n numbering) |
[in] | global_num_end | global number of past-the end block item (1 to n numbering) |
[in] | buf_block_size | Local data buffer block size, or 0 for default global_num_end - global_num_start (only useful on rank 0) |
[in] | buf | pointer to local block data buffer |
[in] | comm | associated MPI communicator |
void cs_file_serializer_destroy | ( | cs_file_serializer_t ** | s | ) |
Destroy a cs_file_serializer_t structure.
[in,out] | s | pointer to pointer structure that should be destroyed |
void cs_file_set_big_endian | ( | cs_file_t * | f | ) |
Ensure that data is read or written in big-endian (network standard) format.
[in,out] | f | cs_file_t descriptor |
void cs_file_set_default_access | ( | cs_file_mode_t | mode, |
cs_file_access_t | method, | ||
MPI_Info | hints | ||
) |
Set the default options for file access.
If the method given contains incompatible values, such as when setting MPI-IO methods when MPI-IO is not available, a "reasonable" default is used instead.
[in] | mode | file mode for which the default is being set (write and append use the same method, and are interchangeable here) |
[in] | method | default access method to set |
[in] | hints | MPI-IO hints, or MPI_INFO_NULL |
void cs_file_set_default_comm | ( | int | block_rank_step, |
int | block_min_size, | ||
MPI_Comm | comm | ||
) |
Set default MPI communicator values for file access.
A block rank stepping value may be used, allowing the use of a reduced communicator for distributed block reads and writes. If this value is greater than 1, ranks not a multiple of this step must be guaranteed to be empty for block reads and writes with files opened using this default.
A minimum block size target may also be used, so as to limit the number of active blocks to a value proportional to the data size (limiting latency issues for small data sets, while not requiring too much local memory).
For each argument, an "out of range" value may be used to avoid modifying the previous default for that argument.
[in] | block_rank_step | MPI rank stepping between non-empty blocks for file block reads and writes (not set if <= 0) |
[in] | block_min_size | minimum block size target for non-empty distributed blocks (not set if < 1) |
[in] | comm | Handle to main MPI communicator (not set if MPI_COMM_SELF) |
void cs_file_set_mpi_io_positionning | ( | cs_file_mpi_positionning_t | positionning | ) |
Set the positionning method for MPI-IO.
It is not always known whether a performance or robustness difference is to be expected using explicit file offsets or individual file pointers. Perusal of a sampling of ROMIO code would seem to indicate that no difference is to be expected, but this might change with MPI IO variants or file systems, so this advanced setting is made possible.
This setting is not available on a per-file basis, though this could be done in the future in the unexpected case of performance results showing this would be useful.
[in] | positionning | chosen positionning method for MPI-IO |
void cs_file_set_swap_endian | ( | cs_file_t * | f, |
int | swap | ||
) |
Set a file's byte-swapping behavior.
[in,out] | f | cs_file_t descriptor |
[in] | swap | 1 if bytes must be swapped, 0 otherwise |
cs_file_off_t cs_file_size | ( | const char * | path | ) |
Return the size of a file.
If the file does not exist, 0 is returned.
Note also that for some special files, such as files in the Linux /proc directory, this may return 0.
[in] | path | file path. |
cs_file_off_t cs_file_tell | ( | cs_file_t * | f | ) |
Return the position of the file pointer.
In parallel, we consider the file pointer to be equal to the highest value of the individual file pointers.
[in] | f | cs_file_t descriptor |
size_t cs_file_write_block | ( | cs_file_t * | f, |
const void * | buf, | ||
size_t | size, | ||
size_t | stride, | ||
cs_gnum_t | global_num_start, | ||
cs_gnum_t | global_num_end | ||
) |
Write data to a file, each associated process providing a contiguous part of this data.
Each process should provide a (possibly empty) block of the data, and we should have: global_num_start at rank 0 = 1 global_num_start at rank i+1 = global_num_end at rank i. Otherwise, behavior (especially positioning for future reads) is undefined.
This function may require an internal copy of the data to ensure that the buffer contents are not modified, so if the buffer contents are temporary values, to be deleted after writing, using cs_file_write_block_buffer() instead may be used to avoid an unneeded memory allocation and copy.
[in] | f | cs_file_t descriptor |
[in] | buf | pointer to location containing data |
[in] | size | size of each item of data in bytes |
[in] | stride | number of (interlaced) values per block item |
[in] | global_num_start | global number of first block item (1 to n numbering) |
[in] | global_num_end | global number of past-the end block item (1 to n numbering) |
size_t cs_file_write_block_buffer | ( | cs_file_t * | f, |
void * | buf, | ||
size_t | size, | ||
size_t | stride, | ||
cs_gnum_t | global_num_start, | ||
cs_gnum_t | global_num_end | ||
) |
Write data to a file, each associated process providing a contiguous part of this data.
Each process should provide a (possibly empty) block of the data, and we should have: global_num_start at rank 0 = 1 global_num_start at rank i+1 = global_num_end at rank i. Otherwise, behavior (especially positioning for future reads) is undefined.
This function is intended to be used mainly data that is already a copy of original data (such as data that has been redistributed across processors just for the sake of output), or that is to be deleted after writing, so it may modify the values in its input buffer (notably to convert from little-endian to big-endian of vice-versa if necessary).
[in] | f | cs_file_t descriptor |
[in,out] | buf | pointer to location containing data |
[in] | size | size of each item of data in bytes |
[in] | stride | number of (interlaced) values per block item |
[in] | global_num_start | global number of first block item (1 to n numbering) |
[in] | global_num_end | global number of past-the end block item (1 to n numbering) |
size_t cs_file_write_global | ( | cs_file_t * | f, |
const void * | buf, | ||
size_t | size, | ||
size_t | ni | ||
) |
Write global data to a file.
Under MPI, data is only written by the associated communicator's root rank. The buffers on other ranks are ignored, though the file offset is updated (i.e. the call to this function is collective).
[in] | f | cs_file_t descriptor |
[in] | buf | pointer to location containing data |
[in] | size | size of each item of data in bytes |
[in] | ni | number of items to write |
const char* cs_file_access_name[] |
const char* cs_file_mpi_positionning_name[] |