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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
/*********************************************************************
*
* Copyright (C) 2013, Northwestern University and Argonne National Laboratory
* See COPYRIGHT notice in top-level directory.
*
*********************************************************************/
/* $Id$ */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
*
* This example shows how to use PnetCDF flexible APIs, ncmpi_put_vara_all()
* and ncmpi_iput_vara() to write two 2D array variables (one is of 4-byte
* integer byte and the other float type) in parallel. It first defines 2 netCDF
* variables of sizes
* var_zy: NZ*nprocs x NY
* var_yx: NY x NX*nprocs
*
* The data partitioning patterns on the 2 variables are row-wise and
* column-wise, respectively. Each process writes a subarray of size
* NZ x NY and NY x NX to var_zy and var_yx, respectively.
* Both local buffers have a ghost cell of length 3 surrounded along each
* dimension.
*
* The compile and run commands are given below.
*
* % mpicc -O2 -o flexible_api flexible_api.c -lpnetcdf
*
* % mpiexec -l -n 4 ./flexible_api /pvfs2/wkliao/testfile.nc
*
* % ncmpidump /pvfs2/wkliao/testfile.nc
* netcdf testfile {
* // file format: CDF-5 (big variables)
* dimensions:
* Z = 20 ;
* Y = 5 ;
* X = 20 ;
* variables:
* int var_zy(Z, Y) ;
* float var_yx(Y, X) ;
* data:
*
* var_zy =
* 0, 0, 0, 0, 0,
* 0, 0, 0, 0, 0,
* 0, 0, 0, 0, 0,
* 0, 0, 0, 0, 0,
* 0, 0, 0, 0, 0,
* 1, 1, 1, 1, 1,
* 1, 1, 1, 1, 1,
* 1, 1, 1, 1, 1,
* 1, 1, 1, 1, 1,
* 1, 1, 1, 1, 1,
* 2, 2, 2, 2, 2,
* 2, 2, 2, 2, 2,
* 2, 2, 2, 2, 2,
* 2, 2, 2, 2, 2,
* 2, 2, 2, 2, 2,
* 3, 3, 3, 3, 3,
* 3, 3, 3, 3, 3,
* 3, 3, 3, 3, 3,
* 3, 3, 3, 3, 3,
* 3, 3, 3, 3, 3 ;
*
* var_yx =
* 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3,
* 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3,
* 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3,
* 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3,
* 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3 ;
* }
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
#include <stdlib.h>
#include <string.h> /* strcpy(), strncpy() */
#include <unistd.h> /* getopt() */
#include <mpi.h>
#include <pnetcdf.h>
#define NZ 5
#define NY 5
#define NX 5
static int verbose;
#define ERR {if(err!=NC_NOERR){printf("Error at %s:%d : %s\n", __FILE__,__LINE__, ncmpi_strerror(err));nerrs++;}}
static void
usage(char *argv0)
{
char *help =
"Usage: %s [-h] | [-q] [file_name]\n"
" [-h] Print help\n"
" [-q] Quiet mode (reports when fail)\n"
" [filename] output netCDF file name\n";
fprintf(stderr, help, argv0);
}
/*----< pnetcdf_check_mem_usage() >------------------------------------------*/
/* check PnetCDF library internal memory usage */
static int
pnetcdf_check_mem_usage(MPI_Comm comm)
{
int err, nerrs=0, rank;
MPI_Offset malloc_size, sum_size;
MPI_Comm_rank(comm, &rank);
/* print info about PnetCDF internal malloc usage */
err = ncmpi_inq_malloc_max_size(&malloc_size);
if (err == NC_NOERR) {
MPI_Reduce(&malloc_size, &sum_size, 1, MPI_OFFSET, MPI_SUM, 0, MPI_COMM_WORLD);
if (rank == 0 && verbose)
printf("maximum heap memory allocated by PnetCDF internally is %lld bytes\n",
sum_size);
/* check if there is any PnetCDF internal malloc residue */
err = ncmpi_inq_malloc_size(&malloc_size);
MPI_Reduce(&malloc_size, &sum_size, 1, MPI_OFFSET, MPI_SUM, 0, MPI_COMM_WORLD);
if (rank == 0 && sum_size > 0)
printf("heap memory allocated by PnetCDF internally has %lld bytes yet to be freed\n",
sum_size);
}
else if (err != NC_ENOTENABLED) {
printf("Error at %s:%d: %s\n", __FILE__,__LINE__,ncmpi_strerror(err));
nerrs++;
}
return nerrs;
}
int main(int argc, char** argv)
{
extern int optind;
char filename[256];
int i, j, rank, nprocs, err, nerrs=0, req, status, ghost_len=3;
int ncid, cmode, varid0, varid1, dimid[3], *buf_zy;
int array_of_sizes[2], array_of_subsizes[2], array_of_starts[2];
double *buf_yx;
MPI_Offset start[2], count[2];
MPI_Datatype subarray;
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
verbose = 1;
/* get command-line arguments */
while ((i = getopt(argc, argv, "hq")) != EOF)
switch(i) {
case 'q': verbose = 0;
break;
case 'h':
default: if (rank==0) usage(argv[0]);
MPI_Finalize();
return 1;
}
if (argv[optind] == NULL) strcpy(filename, "testfile.nc");
else snprintf(filename, 256, "%s", argv[optind]);
if (verbose && rank == 0) printf("%s: example of using flexible APIs\n",__FILE__);
/* create a new file for writing ----------------------------------------*/
cmode = NC_CLOBBER | NC_64BIT_DATA;
err = ncmpi_create(MPI_COMM_WORLD, filename, cmode, MPI_INFO_NULL, &ncid);
ERR
/* define 3 dimensions */
err = ncmpi_def_dim(ncid, "Z", NZ*nprocs, &dimid[0]); ERR
err = ncmpi_def_dim(ncid, "Y", NY, &dimid[1]); ERR
err = ncmpi_def_dim(ncid, "X", NX*nprocs, &dimid[2]); ERR
/* define a variable of size (NZ * nprocs) * NY */
err = ncmpi_def_var(ncid, "var_zy", NC_INT, 2, &dimid[0], &varid0); ERR
/* define a variable of size NY * (NX * nprocs) */
err = ncmpi_def_var(ncid, "var_yx", NC_FLOAT, 2, &dimid[1], &varid1); ERR
err = ncmpi_enddef(ncid); ERR
/* var_zy is partitioned along Z dimension */
array_of_sizes[0] = NZ + 2*ghost_len;
array_of_sizes[1] = NY + 2*ghost_len;
array_of_subsizes[0] = NZ;
array_of_subsizes[1] = NY;
array_of_starts[0] = ghost_len;
array_of_starts[1] = ghost_len;
MPI_Type_create_subarray(2, array_of_sizes, array_of_subsizes,
array_of_starts, MPI_ORDER_C, MPI_INT, &subarray);
MPI_Type_commit(&subarray);
int buffer_len = (NZ+2*ghost_len) * (NY+2*ghost_len);
buf_zy = (int*) malloc(sizeof(int) * buffer_len);
for (i=0; i<buffer_len; i++) buf_zy[i] = rank;
start[0] = NZ * rank; start[1] = 0;
count[0] = NZ; count[1] = NY;
/* calling a blocking flexible API */
err = ncmpi_put_vara_all(ncid, varid0, start, count, buf_zy, 1, subarray);
ERR
/* check the contents of put buffer */
for (i=0; i<buffer_len; i++) {
if (buf_zy[i] != rank)
printf("Error at line %d in %s: put buffer[%d] is altered\n",
__LINE__,__FILE__,i);
}
for (i=0; i<buffer_len; i++) buf_zy[i] = -1;
/* calling a blocking flexible API */
err = ncmpi_get_vara_all(ncid, varid0, start, count, buf_zy, 1, subarray);
ERR
/* check the contents of get buffer */
for (i=0; i<array_of_sizes[0]; i++) {
for (j=0; j<array_of_sizes[1]; j++) {
int index = i*array_of_sizes[1] + j;
if (i < ghost_len || ghost_len+array_of_subsizes[0] <= i ||
j < ghost_len || ghost_len+array_of_subsizes[1] <= j) {
if (buf_zy[index] != -1)
printf("Unexpected get buffer[%d][%d]=%d\n",
i,j,buf_zy[index]);
}
else {
if (buf_zy[index] != rank)
printf("Unexpected get buffer[%d][%d]=%d\n",
i,j,buf_zy[index]);
}
}
}
free(buf_zy);
MPI_Type_free(&subarray);
/* var_yx is partitioned along X dimension */
array_of_sizes[0] = NY + 2*ghost_len;
array_of_sizes[1] = NX + 2*ghost_len;
array_of_subsizes[0] = NY;
array_of_subsizes[1] = NX;
array_of_starts[0] = ghost_len;
array_of_starts[1] = ghost_len;
MPI_Type_create_subarray(2, array_of_sizes, array_of_subsizes,
array_of_starts, MPI_ORDER_C, MPI_DOUBLE,
&subarray);
MPI_Type_commit(&subarray);
buffer_len = (NY+2*ghost_len) * (NX+2*ghost_len);
buf_yx = (double*) malloc(sizeof(double) * buffer_len);
for (i=0; i<buffer_len; i++) buf_yx[i] = rank;
start[0] = 0; start[1] = NX * rank;
count[0] = NY; count[1] = NX;
/* calling a non-blocking flexible API */
err = ncmpi_iput_vara(ncid, varid1, start, count, buf_yx, 1, subarray,&req);
ERR
err = ncmpi_wait_all(ncid, 1, &req, &status); ERR
err = status; ERR
/* check the contents of put buffer */
for (i=0; i<buffer_len; i++) {
if (buf_yx[i] != rank)
printf("Error at line %d in %s: iput buffer[%d]=%f is altered\n",
__LINE__,__FILE__,i,buf_yx[i]);
}
for (i=0; i<buffer_len; i++) buf_yx[i] = -1;
/* calling a non-blocking flexible API */
err = ncmpi_iget_vara(ncid, varid1, start, count, buf_yx, 1, subarray,&req);
ERR
err = ncmpi_wait_all(ncid, 1, &req, &status); ERR
err = status; ERR
/* check the contents of iget buffer */
for (i=0; i<array_of_sizes[0]; i++) {
for (j=0; j<array_of_sizes[1]; j++) {
int index = i*array_of_sizes[1] + j;
if (i < ghost_len || ghost_len+array_of_subsizes[0] <= i ||
j < ghost_len || ghost_len+array_of_subsizes[1] <= j) {
if (buf_yx[index] != -1)
printf("Unexpected get buffer[%d][%d]=%f\n",
i,j,buf_yx[index]);
}
else {
if (buf_yx[index] != rank)
printf("Unexpected get buffer[%d][%d]=%f\n",
i,j,buf_yx[index]);
}
}
}
free(buf_yx);
MPI_Type_free(&subarray);
err = ncmpi_close(ncid); ERR
nerrs += pnetcdf_check_mem_usage(MPI_COMM_WORLD);
MPI_Finalize();
return (nerrs > 0);
}
|