From c0c1f38a5156727f1880287c638566715f1df5a5 Mon Sep 17 00:00:00 2001 From: Robert Latham Date: Wed, 12 Sep 2012 16:28:24 -0500 Subject: [PATCH] Remove archaic Parallel-NetCDF 2 GiB limit Parallel-NetCDF has not had a 2 GiB file size limitation for quite some time, so we can remove this check. fixes #6 --- src/ior.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ior.c b/src/ior.c index c724664..f2d3afe 100644 --- a/src/ior.c +++ b/src/ior.c @@ -2302,10 +2302,6 @@ static void ValidTests(IOR_param_t * test) && (test->blockSize < sizeof(IOR_size_t) || test->transferSize < sizeof(IOR_size_t))) ERR("block/transfer size may not be smaller than IOR_size_t for NCMPI"); - if ((strcmp(test->api, "NCMPI") == 0) - && ((test->numTasks * test->blockSize * test->segmentCount) - > (2 * (IOR_offset_t) GIBIBYTE))) - ERR("file size must be < 2GiB"); if ((test->useFileView == TRUE) && (sizeof(MPI_Aint) < 8) /* used for 64-bit datatypes */ &&((test->numTasks * test->blockSize) >