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 301 302
|
/*********************************************************************
*
* Copyright (C) 2014, Northwestern University and Argonne National Laboratory
* See COPYRIGHT notice in top-level directory.
*
*********************************************************************/
/* $Id$ */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* This example, generalized from column_wise.cpp, makes a number of nonblocking
* API calls, each writes a block of columns into a 2D integer array. In other
* words, the I/O pattern is a blocked cyclic along X dimension.
*
* Each process writes NX columns in total. The block length is controlled by
* block_len. In this example, block_len is set to 2. Blocks are layout in a
* cyclic fashion in the file. This example can test if PnetCDF can coalesce
* file offsets and lengths when constructing a merged filetype.
*
* The compile and run commands are given below, together with an ncmpidump of
* the output file. In this example, block_len = 2.
*
* % mpicxx -O2 -o block_cyclic block_cyclic.cpp -lpnetcdf
* % mpiexec -l -n 4 ./block_cyclic /pvfs2/wkliao/testfile.nc
* 0: 0: NY=10 myNX= 4 myOff= 0
* 1: 1: NY=10 myNX= 4 myOff= 4
* 2: 2: NY=10 myNX= 4 myOff= 8
* 3: 3: NY=10 myNX= 4 myOff= 12
* 0: [i=0] iput() start= 0 0 count= 10 1
* 0: [i=1] iput() start= 0 1 count= 10 1
* 0: [i=2] iput() start= 0 8 count= 10 1
* 0: [i=3] iput() start= 0 9 count= 10 1
* 1: [i=0] iput() start= 0 2 count= 10 1
* 1: [i=1] iput() start= 0 3 count= 10 1
* 1: [i=2] iput() start= 0 10 count= 10 1
* 1: [i=3] iput() start= 0 11 count= 10 1
* 2: [i=0] iput() start= 0 4 count= 10 1
* 2: [i=1] iput() start= 0 5 count= 10 1
* 2: [i=2] iput() start= 0 12 count= 10 1
* 2: [i=3] iput() start= 0 13 count= 10 1
* 3: [i=0] iput() start= 0 6 count= 10 1
* 3: [i=1] iput() start= 0 7 count= 10 1
* 3: [i=2] iput() start= 0 14 count= 10 1
* 3: [i=3] iput() start= 0 15 count= 10 1
*
* % ncmpidump /pvfs2/wkliao/testfile.nc
* netcdf testfile {
* // file format: CDF-5 (big variables)
* dimensions:
* Y = 10 ;
* X = 16 ;
* variables:
* int var(Y, X) ;
* data:
*
* var =
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13,
* 10, 10, 11, 11, 12, 12, 13, 13, 10, 10, 11, 11, 12, 12, 13, 13 ;
* }
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
using namespace std;
#include <string.h> /* strcpy(), strncpy() */
#include <unistd.h> /* getopt() */
#include <pnetcdf>
using namespace PnetCDF;
using namespace PnetCDF::exceptions;
#define NY 10
#define NX 4
#define MIN(a,b) (((a)<(b))?(a):(b))
static void
usage(char *argv0)
{
cerr <<
"Usage: %s [-h] | [-q] [file_name]\n"
" [-h] Print help\n"
" [-q] Quiet mode (reports when fail)\n"
" [filename] output netCDF file name\n"
<< argv0;
}
int main(int argc, char** argv)
{
extern int optind;
char filename[256];
int i, j, verbose=1, rank, nprocs, num_reqs;
int *reqs, *sts, **buf;
MPI_Offset myNX, G_NX, myOff, block_start, block_len;
vector<MPI_Offset> start(2), count(2);
MPI_Init(&argc, &argv);
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
/* 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]);
try {
/* create a new file for writing ------------------------------------*/
NcmpiFile nc(MPI_COMM_WORLD, filename, NcmpiFile::replace,
NcmpiFile::classic5);
/* the global array is NY * (NX * nprocs) */
G_NX = NX * nprocs;
myOff = NX * rank;
myNX = NX;
if (verbose)
printf("%2d: NY=%d myNX=%3lld myOff=%3lld\n",rank,NY,myNX,myOff);
/* define dimensions x and y */
vector<NcmpiDim> dimid(2);
dimid[0] = nc.addDim("Y", NY);
dimid[1] = nc.addDim("X", G_NX);
/* define a 2D variable of integer type */
NcmpiVar var = nc.addVar("var", ncmpiInt, dimid);
/* First, fill the entire array with zeros, using a blocking I/O.
Every process writes a subarray of size NY * myNX */
buf = (int**) malloc(sizeof(int*) * myNX);
buf[0] = (int*) calloc(NY * myNX, sizeof(int));
start[0] = 0; start[1] = myOff;
count[0] = NY; count[1] = myNX;
var.putVar_all(start, count, &buf[0][0]);
free(buf[0]);
nc.flush();
/* initialize the buffer with rank ID. Also make the case interesting,
by allocating buffers separately */
for (i=0; i<myNX; i++) {
buf[i] = (int*) malloc(sizeof(int) * NY);
for (j=0; j<NY; j++) buf[i][j] = rank+10;
}
reqs = (int*) malloc(sizeof(int) * myNX);
sts = (int*) malloc(sizeof(int) * myNX);
/* each proc writes myNX columns of the 2D array, block_len controls the
the number of contiguous columns at a time */
block_start = 0;
block_len = 2; /* can be 1, 2, 3, ..., myNX */
if (block_len > myNX) block_len = myNX;
start[0] = 0; start[1] = rank * block_len;
count[0] = NY; count[1] = 1;
num_reqs = 0;
for (i=0; i<myNX; i++) {
var.iputVar(start, count, &buf[i][0], &reqs[num_reqs++]);
if (verbose)
printf("[i=%d] iput() start=%3lld %3lld count=%3lld %3lld\n",
i, start[0],start[1], count[0],count[1]);
if (i % block_len == block_len-1) {
MPI_Offset stride = MIN(myNX-1-i, block_len);
block_start += block_len * nprocs;
start[1] = block_start + stride * rank;
}
else
start[1]++;
}
nc.Wait_all(num_reqs, reqs, sts);
/* check status of all requests */
for (i=0; i<num_reqs; i++)
if (sts[i] != NC_NOERR)
printf("Error: nonblocking write fails on request %d (%s)\n",
i, ncmpi_strerror(sts[i]));
free(sts);
free(reqs);
for (i=0; i<myNX; i++) free(buf[i]);
free(buf);
/* file is close implicitly */
}
catch(NcmpiException& e) {
cout << e.what() << " error code=" << e.errorCode() << " Error!\n";
return 1;
}
try {
/* open an existing file created earlier for read -------------------*/
NcmpiFile nc(MPI_COMM_WORLD, filename, NcmpiFile::read);
/* the global array is NY * (NX * nprocs) */
NcmpiDim dimY = nc.getDim("Y");
if (dimY.isNull() || dimY.getSize() != NY || dimY.isUnlimited())
throw NcmpiException("read Error: dimension Y ",__FILE__,__LINE__);
NcmpiDim dimX = nc.getDim("X");
if (dimX.isNull() || dimX.getSize() != G_NX || dimX.isUnlimited())
throw NcmpiException("read Error: dimension X ",__FILE__,__LINE__);
myNX = G_NX / nprocs;
NcmpiVar var = nc.getVar("var");
/* initialize the buffer with -1, so a read error can be pinpointed */
buf = (int**) malloc(sizeof(int*) * myNX);
buf[0] = (int*) malloc(sizeof(int) * NY * myNX);
for (i=0; i<myNX; i++) {
if (i > 0) buf[i] = buf[i-1] + NY;
for (j=0; j<NY; j++) buf[i][j] = -1;
}
reqs = (int*) malloc(sizeof(int) * myNX);
sts = (int*) malloc(sizeof(int) * myNX);
/* each proc reads myNX columns of the 2D array, block_len controls the
the number of contiguous columns at a time */
block_start = 0;
block_len = 2; /* can be 1, 2, 3, ..., myNX */
if (block_len > myNX) block_len = myNX;
start[0] = 0; start[1] = rank * block_len;
count[0] = NY; count[1] = 1;
num_reqs = 0;
for (i=0; i<myNX; i++) {
var.igetVar(start, count, &buf[i][0], &reqs[num_reqs++]);
if (i % block_len == block_len-1) {
MPI_Offset stride = MIN(myNX-1-i, block_len);
block_start += block_len * nprocs;
start[1] = block_start + stride * rank;
}
else
start[1]++;
}
nc.Wait_all(num_reqs, reqs, sts);
/* check status of all requests */
for (i=0; i<num_reqs; i++)
if (sts[i] != NC_NOERR)
printf("Error: nonblocking read fails on request %d (%s)\n",
i, ncmpi_strerror(sts[i]));
/* check the read contents */
for (i=0; i<myNX; i++) {
for (j=0; j<NY; j++)
if (buf[i][j] != rank+10) {
printf("Read contents mismatch at buf[%d][%d] = %d (should be %d)\n", i,j,buf[i][j],rank+10);
}
}
free(sts);
free(reqs);
free(buf[0]);
free(buf);
/* file is close implicitly */
}
catch(NcmpiException& e) {
cout << e.what() << " error code=" << e.errorCode() << " Error!\n";
return 1;
}
/* check if there is any PnetCDF internal malloc residue */
MPI_Offset malloc_size, sum_size;
int err = ncmpi_inq_malloc_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 && sum_size > 0)
printf("heap memory allocated by PnetCDF internally has %lld bytes yet to be freed\n",
sum_size);
}
MPI_Finalize();
return 0;
}
|