1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
\begin{verbatim}
int ncmpi_put_var1(int ncid, int varid, const MPI_Offset index[],
const void *buf, MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_get_var1(int ncid, int varid, const MPI_Offset index[],
void *buf, MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_put_var(int ncid, int varid, const void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_put_var_all(int ncid, int varid, const void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_get_var(int ncid, int varid, void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_get_var_all(int ncid, int varid, void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_put_vara(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const void *buf,
MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_put_vara_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const void *buf,
MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_get_vara(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_get_vara_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_put_vars(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_put_vars_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_get_vars(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
void *buf, MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_get_vars_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
void *buf, MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_put_varm(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const MPI_Offset imap[], const void *buf,
MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_put_varm_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const MPI_Offset imap[], const void *buf,
MPI_Offset bufcount, MPI_Datatype datatype);
int ncmpi_get_varm(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const MPI_Offset imap[], void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
int ncmpi_get_varm_all(int ncid, int varid, const MPI_Offset start[],
const MPI_Offset count[], const MPI_Offset stride[],
const MPI_Offset imap[], void *buf, MPI_Offset bufcount,
MPI_Datatype datatype);
\end{verbatim}
|