netcdf-c/include/netcdf_par.h

61 lines
1.6 KiB
C
Raw Normal View History

/*! \file
*
* Main header file for the Parallel C API.
*
* 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.
*
2017-11-08 18:33:44 +08:00
* \author Ed Hartnett
2010-06-07 19:25:58 +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. */
EXTERNL int
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. */
EXTERNL int
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. */
EXTERNL int
nc_var_par_access(int ncid, int varid, int par_access);
EXTERNL int
nc_create_par_fortran(const char *path, int cmode, int comm,
int info, int *ncidp);
EXTERNL int
nc_open_par_fortran(const char *path, int mode, int comm,
int info, int *ncidp);
2010-06-07 19:25:58 +08:00
#if defined(__cplusplus)
}
#endif
2010-06-07 19:25:58 +08:00
#endif /* NETCDF_PAR_H */