2011-08-26 00:08:17 +04:00
|
|
|
/*
|
2015-09-03 04:33:45 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2016-06-02 05:49:12 +03:00
|
|
|
* Copyright (c) 2004-2016 The University of Tennessee and The University
|
2015-09-03 04:33:45 +03:00
|
|
|
* 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.
|
2016-07-20 22:46:44 +03:00
|
|
|
* Copyright (c) 2008-2016 University of Houston. All rights reserved.
|
2015-09-03 04:33:45 +03:00
|
|
|
* Copyright (c) 2015 Research Organization for Information Science
|
|
|
|
* and Technology (RIST). All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2015-09-03 04:33:45 +03:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2015-09-03 04:33:45 +03:00
|
|
|
* $HEADER$
|
2011-08-26 00:08:17 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/info/info.h"
|
|
|
|
#include "ompi/file/file.h"
|
|
|
|
#include "ompi/mca/fs/fs.h"
|
|
|
|
#include "ompi/mca/fs/base/base.h"
|
|
|
|
#include "ompi/mca/fcoll/fcoll.h"
|
|
|
|
#include "ompi/mca/fcoll/base/base.h"
|
|
|
|
#include "ompi/mca/fbtl/fbtl.h"
|
|
|
|
#include "ompi/mca/fbtl/base/base.h"
|
2013-07-18 01:30:50 +04:00
|
|
|
#include "ompi/mca/sharedfp/sharedfp.h"
|
|
|
|
#include "ompi/mca/sharedfp/base/base.h"
|
2011-08-26 00:08:17 +04:00
|
|
|
|
|
|
|
#include "io_ompio.h"
|
2014-08-22 05:34:19 +04:00
|
|
|
#include "io_ompio_request.h"
|
2011-08-26 00:08:17 +04:00
|
|
|
#include "math.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
/* Read and write routines are split into two interfaces.
|
|
|
|
** The
|
|
|
|
** mca_io_ompio_file_read/write[_at]
|
|
|
|
**
|
2014-08-15 00:17:58 +04:00
|
|
|
** routines are the ones registered with the ompio modules.
|
|
|
|
** The
|
2015-06-24 06:59:57 +03:00
|
|
|
**
|
2016-07-20 22:46:44 +03:00
|
|
|
** mca_common_ompio_file_read/write[_at]
|
2014-08-15 00:17:58 +04:00
|
|
|
**
|
|
|
|
** routesin are used e.g. from the shared file pointer modules.
|
|
|
|
** The main difference is, that the first one takes an ompi_file_t
|
|
|
|
** as a file pointer argument, while the second uses the ompio internal
|
|
|
|
** mca_io_ompio_file_t structure.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
int mca_io_ompio_file_write (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t *status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
2013-07-18 01:30:50 +04:00
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_write(fh,buf,count,datatype,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_at (ompi_file_t *fh,
|
|
|
|
OMPI_MPI_OFFSET_TYPE offset,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t *status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_write_at (&data->ompio_fh, offset,buf,count,datatype,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2014-08-15 00:17:58 +04:00
|
|
|
|
2013-07-18 01:30:50 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_iwrite (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_request_t **request)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_iwrite(&data->ompio_fh,buf,count,datatype,request);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2012-07-12 14:26:27 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_iwrite_at (ompi_file_t *fh,
|
|
|
|
OMPI_MPI_OFFSET_TYPE offset,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_request_t **request)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
2015-06-24 06:59:57 +03:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_iwrite_at(&data->ompio_fh,offset,buf,count,datatype,request);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2014-08-15 05:49:43 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
/* Collective operations */
|
|
|
|
/******************************************************************/
|
|
|
|
|
|
|
|
int mca_io_ompio_file_write_all (ompi_file_t *fh,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t *status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
|
|
|
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2014-08-15 00:17:58 +04:00
|
|
|
ret = data->ompio_fh.
|
2015-06-24 06:59:57 +03:00
|
|
|
f_fcoll->fcoll_file_write_all (&data->ompio_fh,
|
|
|
|
buf,
|
|
|
|
count,
|
2014-08-15 00:17:58 +04:00
|
|
|
datatype,
|
|
|
|
status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2014-08-15 00:17:58 +04:00
|
|
|
if ( MPI_STATUS_IGNORE != status ) {
|
|
|
|
size_t size;
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
opal_datatype_type_size (&datatype->super, &size);
|
|
|
|
status->_ucount = count * size;
|
|
|
|
}
|
2011-08-26 00:08:17 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_at_all (ompi_file_t *fh,
|
|
|
|
OMPI_MPI_OFFSET_TYPE offset,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t *status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_write_at_all(&data->ompio_fh,offset,buf,count,datatype,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2011-08-26 00:08:17 +04:00
|
|
|
|
2015-06-18 13:17:33 +03:00
|
|
|
int mca_io_ompio_file_iwrite_all (ompi_file_t *fh,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2015-06-18 13:17:33 +03:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_request_t **request)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data=NULL;
|
|
|
|
mca_io_ompio_file_t *fp=NULL;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
|
|
|
fp = &data->ompio_fh;
|
|
|
|
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2015-06-18 13:17:33 +03:00
|
|
|
if ( NULL != fp->f_fcoll->fcoll_file_iwrite_all ) {
|
2015-06-24 06:59:57 +03:00
|
|
|
ret = fp->f_fcoll->fcoll_file_iwrite_all (&data->ompio_fh,
|
|
|
|
buf,
|
|
|
|
count,
|
2015-06-18 13:17:33 +03:00
|
|
|
datatype,
|
|
|
|
request);
|
|
|
|
}
|
|
|
|
else {
|
2015-06-24 06:59:57 +03:00
|
|
|
/* this fcoll component does not support non-blocking
|
|
|
|
collective I/O operations. WE fake it with
|
2015-06-18 13:17:33 +03:00
|
|
|
individual non-blocking I/O operations. */
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_iwrite ( fp, buf, count, datatype, request );
|
2015-06-18 13:17:33 +03:00
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2015-06-18 13:17:33 +03:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
|
2015-06-18 13:17:33 +03:00
|
|
|
int mca_io_ompio_file_iwrite_at_all (ompi_file_t *fh,
|
|
|
|
OMPI_MPI_OFFSET_TYPE offset,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2015-06-18 13:17:33 +03:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_request_t **request)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_iwrite_at_all ( &data->ompio_fh, offset, buf, count, datatype, request );
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2015-06-18 13:17:33 +03:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
|
|
|
|
/* Infrastructure for shared file pointer operations */
|
|
|
|
/* (Individual and collective */
|
|
|
|
/******************************************************/
|
|
|
|
|
|
|
|
int mca_io_ompio_file_write_shared (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t * status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
|
|
|
mca_sharedfp_base_module_t * shared_fp_base_module;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
|
|
|
|
|
|
|
/*get the shared fp module associated with this file*/
|
|
|
|
shared_fp_base_module = fh->f_sharedfp;
|
2014-09-13 01:15:58 +04:00
|
|
|
if ( NULL == shared_fp_base_module ){
|
|
|
|
opal_output(0, "No shared file pointer component found for this communicator. Can not execute\n");
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
ret = shared_fp_base_module->sharedfp_write(fh,buf,count,datatype,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_iwrite_shared (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_request_t **request)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
|
|
|
mca_sharedfp_base_module_t * shared_fp_base_module;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
|
|
|
|
|
|
|
/*get the shared fp module associated with this file*/
|
|
|
|
shared_fp_base_module = fh->f_sharedfp;
|
2014-09-13 01:15:58 +04:00
|
|
|
if ( NULL == shared_fp_base_module ){
|
|
|
|
opal_output(0, "No shared file pointer component found for this communicator. Can not execute\n");
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
ret = shared_fp_base_module->sharedfp_iwrite(fh,buf,count,datatype,request);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_ordered (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype,
|
|
|
|
ompi_status_public_t * status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
|
|
|
mca_sharedfp_base_module_t * shared_fp_base_module;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
|
|
|
|
|
|
|
/*get the shared fp module associated with this file*/
|
|
|
|
shared_fp_base_module = fh->f_sharedfp;
|
2014-09-13 01:15:58 +04:00
|
|
|
if ( NULL == shared_fp_base_module ){
|
|
|
|
opal_output(0,"No shared file pointer component found for this communicator. Can not execute\n");
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
ret = shared_fp_base_module->sharedfp_write_ordered(fh,buf,count,datatype,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_ordered_begin (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
|
|
|
mca_sharedfp_base_module_t * shared_fp_base_module;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
|
|
|
|
|
|
|
/*get the shared fp module associated with this file*/
|
|
|
|
shared_fp_base_module = fh->f_sharedfp;
|
2014-09-13 01:15:58 +04:00
|
|
|
if ( NULL == shared_fp_base_module ){
|
|
|
|
opal_output(0, "No shared file pointer component found for this communicator. Can not execute\n");
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
ret = shared_fp_base_module->sharedfp_write_ordered_begin(fh,buf,count,datatype);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_ordered_end (ompi_file_t *fp,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
ompi_status_public_t *status)
|
2011-08-26 00:08:17 +04:00
|
|
|
{
|
2013-07-18 01:30:50 +04:00
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
mca_io_ompio_file_t *fh;
|
|
|
|
mca_sharedfp_base_module_t * shared_fp_base_module;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fp->f_io_selected_data;
|
|
|
|
fh = &data->ompio_fh;
|
|
|
|
|
|
|
|
/*get the shared fp module associated with this file*/
|
|
|
|
shared_fp_base_module = fh->f_sharedfp;
|
2014-09-13 01:15:58 +04:00
|
|
|
if ( NULL == shared_fp_base_module ){
|
|
|
|
opal_output(0, "No shared file pointer component found for this communicator. Can not execute\n");
|
|
|
|
return OMPI_ERROR;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
ret = shared_fp_base_module->sharedfp_write_ordered_end(fh,buf,status);
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fp->f_mutex);
|
2013-07-18 01:30:50 +04:00
|
|
|
|
2011-08-26 00:08:17 +04:00
|
|
|
return ret;
|
|
|
|
}
|
2014-08-15 00:17:58 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* Split collectives . Not really used but infrastructure is in place */
|
|
|
|
/**********************************************************************/
|
2015-06-18 14:22:41 +03:00
|
|
|
int mca_io_ompio_file_write_all_begin (ompi_file_t *fh,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2015-06-18 14:22:41 +03:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_file_t *fp;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
|
|
|
fp = &data->ompio_fh;
|
|
|
|
if ( true == fp->f_split_coll_in_use ) {
|
|
|
|
printf("Only one split collective I/O operation allowed per file handle at any given point in time!\n");
|
|
|
|
return MPI_ERR_OTHER;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
/* No need for locking fh->f_mutex, that is done in file_iwrite_all */
|
2015-06-18 14:22:41 +03:00
|
|
|
ret = mca_io_ompio_file_iwrite_all ( fh, buf, count, datatype, &fp->f_split_coll_req );
|
|
|
|
fp->f_split_coll_in_use = true;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mca_io_ompio_file_write_all_end (ompi_file_t *fh,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2015-06-18 14:22:41 +03:00
|
|
|
ompi_status_public_t *status)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_file_t *fp;
|
|
|
|
mca_io_ompio_data_t *data;
|
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
|
|
|
fp = &data->ompio_fh;
|
|
|
|
ret = ompi_request_wait ( &fp->f_split_coll_req, status );
|
|
|
|
|
|
|
|
/* remove the flag again */
|
|
|
|
fp->f_split_coll_in_use = false;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_at_all_begin (ompi_file_t *fh,
|
|
|
|
OMPI_MPI_OFFSET_TYPE offset,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
int count,
|
|
|
|
struct ompi_datatype_t *datatype)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
2015-07-16 00:05:52 +03:00
|
|
|
mca_io_ompio_data_t *data=NULL;
|
|
|
|
mca_io_ompio_file_t *fp=NULL;
|
2014-08-15 00:17:58 +04:00
|
|
|
|
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2015-07-16 00:05:52 +03:00
|
|
|
fp = &data->ompio_fh;
|
2014-08-15 00:17:58 +04:00
|
|
|
|
2015-07-16 00:05:52 +03:00
|
|
|
if ( true == fp->f_split_coll_in_use ) {
|
2015-06-18 14:22:41 +03:00
|
|
|
printf("Only one split collective I/O operation allowed per file handle at any given point in time!\n");
|
|
|
|
return MPI_ERR_REQUEST;
|
|
|
|
}
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_LOCK(&fh->f_mutex);
|
2016-07-20 22:46:44 +03:00
|
|
|
ret = mca_common_ompio_file_iwrite_at_all ( fp, offset, buf, count, datatype, &fp->f_split_coll_req );
|
2016-08-23 19:07:58 +03:00
|
|
|
OPAL_THREAD_UNLOCK(&fh->f_mutex);
|
2015-07-16 00:05:52 +03:00
|
|
|
fp->f_split_coll_in_use = true;
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-07-16 00:05:52 +03:00
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
int mca_io_ompio_file_write_at_all_end (ompi_file_t *fh,
|
2015-09-03 04:33:45 +03:00
|
|
|
const void *buf,
|
2014-08-15 00:17:58 +04:00
|
|
|
ompi_status_public_t * status)
|
|
|
|
{
|
|
|
|
int ret = OMPI_SUCCESS;
|
|
|
|
mca_io_ompio_data_t *data;
|
2015-07-16 00:05:52 +03:00
|
|
|
mca_io_ompio_file_t *fp=NULL;
|
2015-08-24 18:32:33 +03:00
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
data = (mca_io_ompio_data_t *) fh->f_io_selected_data;
|
2015-07-16 00:05:52 +03:00
|
|
|
fp = &data->ompio_fh;
|
|
|
|
ret = ompi_request_wait ( &fp->f_split_coll_req, status );
|
2014-08-15 00:17:58 +04:00
|
|
|
|
2015-06-18 14:22:41 +03:00
|
|
|
/* remove the flag again */
|
2015-07-16 00:05:52 +03:00
|
|
|
fp->f_split_coll_in_use = false;
|
|
|
|
|
2014-08-15 00:17:58 +04:00
|
|
|
return ret;
|
|
|
|
}
|