2016-01-15 02:02:23 +08:00
|
|
|
/*! \file
|
|
|
|
*
|
|
|
|
* Main header file for the Parallel C API.
|
|
|
|
*
|
2018-12-07 05:13:56 +08:00
|
|
|
* Copyright 2018 University Corporation for Atmospheric
|
2010-06-07 19:25:58 +08:00
|
|
|
* Research/Unidata. See COPYRIGHT file for more info.
|
|
|
|
*
|
|
|
|
* This header file is for the parallel I/O functions of netCDF.
|
2016-01-15 02:02:23 +08:00
|
|
|
*
|
2017-11-08 18:33:44 +08:00
|
|
|
* \author Ed Hartnett
|
2010-06-07 19:25:58 +08:00
|
|
|
*/
|
|
|
|
|
2019-10-29 00:29:39 +08:00
|
|
|
/*
|
|
|
|
* In order to use any of the netcdf_XXX.h files, it is necessary
|
|
|
|
* to include netcdf.h followed by any netcdf_XXX.h files.
|
|
|
|
* Various things (like EXTERNL) are defined in netcdf.h
|
|
|
|
* to make them available for use by the netcdf_XXX.h files.
|
|
|
|
*/
|
|
|
|
|
2010-06-07 19:25:58 +08:00
|
|
|
#ifndef NETCDF_PAR_H
|
|
|
|
#define NETCDF_PAR_H 1
|
|
|
|
|
|
|
|
#include <mpi.h>
|
|
|
|
|
2017-11-08 18:33:44 +08:00
|
|
|
/** Use with nc_var_par_access() to set parallel access to independent. */
|
2010-06-07 19:25:58 +08:00
|
|
|
#define NC_INDEPENDENT 0
|
2017-11-08 18:33:44 +08:00
|
|
|
/** Use with nc_var_par_access() to set parallel access to collective. */
|
2010-06-07 19:25:58 +08:00
|
|
|
#define NC_COLLECTIVE 1
|
|
|
|
|
2019-12-20 22:43:39 +08:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2010-06-07 19:25:58 +08:00
|
|
|
/* Create a file and enable parallel I/O. */
|
2019-09-22 09:55:11 +08:00
|
|
|
EXTERNL int
|
2019-02-19 21:10:30 +08:00
|
|
|
nc_create_par(const char *path, int cmode, MPI_Comm comm, MPI_Info info,
|
|
|
|
int *ncidp);
|
2010-06-07 19:25:58 +08:00
|
|
|
|
|
|
|
/* Open a file and enable parallel I/O. */
|
2019-09-22 09:55:11 +08:00
|
|
|
EXTERNL int
|
2019-02-19 21:10:30 +08:00
|
|
|
nc_open_par(const char *path, int mode, MPI_Comm comm, MPI_Info info,
|
|
|
|
int *ncidp);
|
2010-06-07 19:25:58 +08:00
|
|
|
|
|
|
|
/* Change a variable from independent (the default) to collective
|
|
|
|
* access. */
|
2019-09-22 09:55:11 +08:00
|
|
|
EXTERNL int
|
2019-02-19 21:10:30 +08:00
|
|
|
nc_var_par_access(int ncid, int varid, int par_access);
|
|
|
|
|
2019-09-22 09:55:11 +08:00
|
|
|
EXTERNL int
|
2019-02-19 21:10:30 +08:00
|
|
|
nc_create_par_fortran(const char *path, int cmode, int comm,
|
|
|
|
int info, int *ncidp);
|
2019-09-22 09:55:11 +08:00
|
|
|
EXTERNL int
|
2019-02-19 21:10:30 +08:00
|
|
|
nc_open_par_fortran(const char *path, int mode, int comm,
|
|
|
|
int info, int *ncidp);
|
2010-06-07 19:25:58 +08:00
|
|
|
|
2012-01-18 12:46:09 +08:00
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-06-07 19:25:58 +08:00
|
|
|
#endif /* NETCDF_PAR_H */
|