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
|
! This is part of the netCDF package. Copyright 2006-2019
! University Corporation for Atmospheric Research/Unidata. See
! COPYRIGHT file for conditions of use.
! This program tests netCDF-4 parallel I/O and fill values from
! fortran. It creates a file like this:
! netcdf f90tst_parallel3 {
! dimensions:
! x = 16 ;
! y = 16 ;
! variables:
! byte byte(x, y) ;
! short short(x, y) ;
! int int(x, y) ;
! float float(x, y) ;
! double double(x, y) ;
! ubyte ubyte(x, y) ;
! ushort ushort(x, y) ;
! uint uint(x, y) ;
! Ed Hartnett
program f90tst_parallel3
use netcdf
implicit none
include 'mpif.h'
integer :: mode_flag, cmode
integer :: p, my_rank, ierr
call MPI_Init(ierr)
call MPI_Comm_rank(MPI_COMM_WORLD, my_rank, ierr)
call MPI_Comm_size(MPI_COMM_WORLD, p, ierr)
if (my_rank .eq. 0) then
print *, ' '
print *, '*** Testing netCDF-4 parallel I/O with fill values.'
endif
! There must be 4 procs for this test.
if (p .ne. 4) then
print *, 'Sorry, this test program must be run on four processors.'
stop 1
endif
cmode = IOR(nf90_clobber, nf90_mpiio)
#ifdef NF_HAS_PNETCDF
! test CDF-1 file
call parallel_io(cmode)
! test CDF-2 file
mode_flag = IOR(cmode, nf90_64bit_offset)
call parallel_io(mode_flag)
#ifdef ENABLE_CDF5
! test CDF-5 file
mode_flag = IOR(cmode, nf90_64bit_data)
call parallel_io(mode_flag)
#endif
#endif
#ifdef NF_HAS_PARALLEL4
mode_flag = IOR(cmode, nf90_netcdf4)
call parallel_io(mode_flag)
#endif
call MPI_Finalize(ierr)
if (my_rank .eq. 0) print *,'*** SUCCESS!'
contains
! This subroutine handles errors by printing an error message and
! exiting with a non-zero status.
subroutine check(errcode)
use netcdf
implicit none
integer, intent(in) :: errcode
if(errcode /= nf90_noerr) then
print *, 'Error: ', trim(nf90_strerror(errcode))
stop 99
endif
end subroutine check
subroutine parallel_io(mode_flag)
use typeSizes
use netcdf
implicit none
include 'mpif.h'
integer :: mode_flag
! This is the name of the data file we will create.
character (len = *), parameter :: FILE_NAME = "f90tst_parallel3.nc"
integer, parameter :: MAX_DIMS = 2
integer, parameter :: NX = 16, NY = 16
integer, parameter :: HALF_NX = NX/2, HALF_NY = NY/2
integer, parameter :: NUM_PROC = 4
integer, parameter :: CACHE_SIZE = 4194304, CACHE_NELEMS = 1013
integer, parameter :: CACHE_PREEMPTION = 79
integer, parameter :: NUM_VARS = 8
character (len = *), parameter :: var_name(NUM_VARS) = &
(/ 'byte__', 'short_', 'int___', 'float_', 'double', 'ubyte_', 'ushort', 'uint__' /)
integer :: var_type(NUM_VARS) = (/ nf90_byte, nf90_short, nf90_int, &
nf90_float, nf90_double, nf90_ubyte, nf90_ushort, nf90_uint /)
integer :: ncid, varid(NUM_VARS), dimids(MAX_DIMS)
integer :: x_dimid, y_dimid
integer :: byte_out(HALF_NY, HALF_NX), byte_in(HALF_NY, HALF_NX)
integer :: short_out(HALF_NY, HALF_NX), short_in(HALF_NY, HALF_NX)
integer :: int_out(HALF_NY, HALF_NX), int_in(HALF_NY, HALF_NX)
real :: areal_out(HALF_NY, HALF_NX), areal_in(HALF_NY, HALF_NX)
real :: double_out(HALF_NY, HALF_NX), double_in(HALF_NY, HALF_NX)
integer :: ubyte_out(HALF_NY, HALF_NX), ubyte_in(HALF_NY, HALF_NX)
integer :: ushort_out(HALF_NY, HALF_NX), ushort_in(HALF_NY, HALF_NX)
integer (kind = EightByteInt) :: uint_out(HALF_NY, HALF_NX), uint_in(HALF_NY, HALF_NX)
integer :: nvars, ngatts, ndims, unlimdimid, file_format, tst_nvars
integer :: x, y, v
integer :: my_rank, ierr, old_mode
integer :: start(MAX_DIMS), count(MAX_DIMS)
call MPI_Comm_rank(MPI_COMM_WORLD, my_rank, ierr)
! Create some pretend data.
do x = 1, HALF_NX
do y = 1, HALF_NY
byte_out(y, x) = my_rank * (-1)
short_out(y, x) = my_rank * (-2)
int_out(y, x) = my_rank * (-4)
areal_out(y, x) = my_rank * 2.5
double_out(y, x) = my_rank * (-4.5)
ubyte_out(y, x) = my_rank
ushort_out(y, x) = my_rank * 2
uint_out(y, x) = my_rank * 4
end do
end do
! Create the netCDF file.
call check(nf90_create(FILE_NAME, mode_flag, ncid, &
comm = MPI_COMM_WORLD, info = MPI_INFO_NULL, cache_size = CACHE_SIZE, &
cache_nelems = CACHE_NELEMS, cache_preemption = CACHE_PREEMPTION))
! Define the dimensions.
call check(nf90_def_dim(ncid, "x", NX, x_dimid))
call check(nf90_def_dim(ncid, "y", NY, y_dimid))
dimids = (/ y_dimid, x_dimid /)
if (IAND(mode_flag, nf90_netcdf4) .GT. 0) then
tst_nvars = 8
else if (IAND(mode_flag, nf90_64bit_data) .GT. 0) then
tst_nvars = 8
else
tst_nvars = 5
end if
! Define the variables.
do v = 1, tst_nvars
call check(nf90_def_var(ncid, var_name(v), var_type(v), dimids, varid(v)))
end do
! enable fill mode
call check(nf90_set_fill(ncid, NF90_FILL, old_mode))
! This will be the last collective operation.
call check(nf90_enddef(ncid))
! Determine what part of the variable will be written/read for this
! processor. It's a checkerboard decomposition.
count = (/ HALF_NX, HALF_NY /)
if (my_rank .eq. 0) then
start = (/ 1, 1 /)
else if (my_rank .eq. 1) then
start = (/ HALF_NX + 1, 1 /)
else if (my_rank .eq. 2) then
start = (/ 1, HALF_NY + 1 /)
else if (my_rank .eq. 3) then
start = (/ HALF_NX + 1, HALF_NY + 1 /)
endif
! Write this processor's data, except for processor zero.
if (my_rank .ne. 0) then
call check(nf90_put_var(ncid, varid(1), byte_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(2), short_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(3), int_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(4), areal_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(5), double_out, start = start, count = count))
if (tst_nvars .GT. 5) then
call check(nf90_put_var(ncid, varid(6), ubyte_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(7), ushort_out, start = start, count = count))
call check(nf90_put_var(ncid, varid(8), uint_out, start = start, count = count))
endif
endif
! Close the file.
call check(nf90_close(ncid))
! Reopen the file.
call check(nf90_open(FILE_NAME, IOR(nf90_nowrite, nf90_mpiio), ncid, &
comm = MPI_COMM_WORLD, info = MPI_INFO_NULL))
! Check some stuff out.
call check(nf90_inquire(ncid, ndims, nvars, ngatts, unlimdimid, file_format))
if (ndims /= 2 .or. nvars /= tst_nvars .or. ngatts /= 0 .or. unlimdimid /= -1) stop 2
if (IAND(mode_flag, nf90_netcdf4) .GT. 0) then
if (file_format /= nf90_format_netcdf4) stop 3
else if (IAND(mode_flag, nf90_64bit_data) .GT. 0) then
if (file_format /= nf90_format_cdf5) stop 4
else if (IAND(mode_flag, nf90_64bit_offset) .GT. 0) then
if (file_format /= nf90_format_64bit_offset) stop 5
endif
! Read this processor's data.
call check(nf90_get_var(ncid, varid(1), byte_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(2), short_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(3), int_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(4), areal_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(5), double_in, start = start, count = count))
if (tst_nvars .GT. 5) then
call check(nf90_get_var(ncid, varid(6), ubyte_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(7), ushort_in, start = start, count = count))
call check(nf90_get_var(ncid, varid(8), uint_in, start = start, count = count))
end if
! Check the data. All the data from the processor zero are fill
! value.
do x = 1, HALF_NX
do y = 1, HALF_NY
if (my_rank .eq. 0) then
if (byte_in(y, x) .ne. nf90_fill_byte) stop 6
if (short_in(y, x) .ne. nf90_fill_short) stop 7
if (int_in(y, x) .ne. nf90_fill_int) stop 8
if (areal_in(y, x) .ne. nf90_fill_real) stop 9
if (double_in(y, x) .ne. nf90_fill_double) stop 10
if (tst_nvars .GT. 5) then
if (ubyte_in(y, x) .ne. nf90_fill_ubyte) stop 11
if (ushort_in(y, x) .ne. nf90_fill_ushort) stop 12
if (uint_in(y, x) .ne. nf90_fill_uint) stop 13
endif
else
if (byte_in(y, x) .ne. (my_rank * (-1))) stop 14
if (short_in(y, x) .ne. (my_rank * (-2))) stop 15
if (int_in(y, x) .ne. (my_rank * (-4))) stop 16
if (areal_in(y, x) .ne. (my_rank * (2.5))) stop 17
if (double_in(y, x) .ne. (my_rank * (-4.5))) stop 18
if (tst_nvars .GT. 5) then
if (ubyte_in(y, x) .ne. (my_rank * (1))) stop 19
if (ushort_in(y, x) .ne. (my_rank * (2))) stop 20
if (uint_in(y, x) .ne. (my_rank * (4))) stop 21
endif
endif
end do
end do
! Close the file.
call check(nf90_close(ncid))
end subroutine parallel_io
end program f90tst_parallel3
|