Skip to content

Commit c0c1f38

Browse files
Robert Lathammorrone
authored andcommitted
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
1 parent b76238b commit c0c1f38

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/ior.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2302,10 +2302,6 @@ static void ValidTests(IOR_param_t * test)
23022302
&& (test->blockSize < sizeof(IOR_size_t)
23032303
|| test->transferSize < sizeof(IOR_size_t)))
23042304
ERR("block/transfer size may not be smaller than IOR_size_t for NCMPI");
2305-
if ((strcmp(test->api, "NCMPI") == 0)
2306-
&& ((test->numTasks * test->blockSize * test->segmentCount)
2307-
> (2 * (IOR_offset_t) GIBIBYTE)))
2308-
ERR("file size must be < 2GiB");
23092305
if ((test->useFileView == TRUE)
23102306
&& (sizeof(MPI_Aint) < 8) /* used for 64-bit datatypes */
23112307
&&((test->numTasks * test->blockSize) >

0 commit comments

Comments
 (0)