Previous: Example of Simple Parallel I/O Access (part 2) Next: Jumpshot Graph of Independent Parallel Data Writes Table of contents Frames 2012 Unidata NetCDF Workshop > Parallel I/O with NetCDF

35.10 Using NetCDF Parallel I/O in Fortran 90
Using netCDF-4 parallel I/O in Fortran 90 is easy.

 

  ! Create the netCDF file. 
  call check(nf90_create(FILE_NAME, IOR(nf90_netcdf4, nf90_mpiposix), ncid, &
       comm = MPI_COMM_WORLD, info = MPI_INFO_NULL, cache_size = CACHE_SIZE, &
       cache_nelems = CACHE_NELEMS, cache_preemption = CACHE_PREEMPTION))

 


Previous: Example of Simple Parallel I/O Access (part 2) Next: Jumpshot Graph of Independent Parallel Data Writes Table of contents Frames 2012 Unidata NetCDF Workshop > Parallel I/O with NetCDF