1
1
openmpi/ompi/mca/io/ompio/io_ompio_module.c
Edgar Gabriel ff130e7a9c ompio: resync v4.1 branch to master
this commit syncs ompio related directories in v4.1.x to master. The efforts to bring the lustre performance fixes and support for external32 data representation over were too overwhelming when dealing with every single pr individually.

There are a very few minor modification that had to be done for syncing:
 - v4.1.x does not have opal/mutex.h
 - v4.1.x does not have opal_atomic_int32_t datatype
 - the io module structure has two fewer function pointers (related to info_set/get) compared to the version on master.

Tested so far with the ompio testsuite as well as hdf5-1.10.5 testsuite (testphdf5, t_shapesame, t_bigio) on an XFS file system.
More tests on Lustre and BeeGFS to follow.

Signed-off-by: Edgar Gabriel <egabriel@central.uh.edu>
2020-12-17 17:44:26 -06:00

98 строки
2.9 KiB
C

/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2008-2011 University of Houston. All rights reserved.
* Copyright (c) 2016-2019 IBM Corporation. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "ompi_config.h"
#include "mpi.h"
#include "ompi/mca/io/io.h"
#include "io_ompio.h"
/*
* The OMPIO module operations
*/
mca_io_base_module_2_0_0_t mca_io_ompio_module = {
mca_io_ompio_file_open,
mca_io_ompio_file_close,
mca_io_ompio_file_set_size,
mca_io_ompio_file_preallocate,
mca_io_ompio_file_get_size,
mca_io_ompio_file_get_amode,
mca_io_ompio_file_set_view,
mca_io_ompio_file_get_view,
/* Index IO operations */
mca_io_ompio_file_read_at,
mca_io_ompio_file_read_at_all,
mca_io_ompio_file_write_at,
mca_io_ompio_file_write_at_all,
mca_io_ompio_file_iread_at,
mca_io_ompio_file_iwrite_at,
mca_io_ompio_file_iread_at_all,
mca_io_ompio_file_iwrite_at_all,
/* non-indexed IO operations */
mca_io_ompio_file_read,
mca_io_ompio_file_read_all,
mca_io_ompio_file_write,
mca_io_ompio_file_write_all,
mca_io_ompio_file_iread,
mca_io_ompio_file_iwrite,
mca_io_ompio_file_iread_all,
mca_io_ompio_file_iwrite_all,
mca_io_ompio_file_seek,
mca_io_ompio_file_get_position,
mca_io_ompio_file_get_byte_offset,
mca_io_ompio_file_read_shared,
mca_io_ompio_file_write_shared,
mca_io_ompio_file_iread_shared,
mca_io_ompio_file_iwrite_shared,
mca_io_ompio_file_read_ordered,
mca_io_ompio_file_write_ordered,
mca_io_ompio_file_seek_shared,
mca_io_ompio_file_get_position_shared,
/* Split IO operations */
mca_io_ompio_file_read_at_all_begin,
mca_io_ompio_file_read_at_all_end,
mca_io_ompio_file_write_at_all_begin,
mca_io_ompio_file_write_at_all_end,
mca_io_ompio_file_read_all_begin,
mca_io_ompio_file_read_all_end,
mca_io_ompio_file_write_all_begin,
mca_io_ompio_file_write_all_end,
mca_io_ompio_file_read_ordered_begin,
mca_io_ompio_file_read_ordered_end,
mca_io_ompio_file_write_ordered_begin,
mca_io_ompio_file_write_ordered_end,
mca_io_ompio_file_get_type_extent,
/* Sync/atomic IO operations */
mca_io_ompio_file_set_atomicity,
mca_io_ompio_file_get_atomicity,
mca_io_ompio_file_sync
};