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
|
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
C Copyright by The HDF Group. *
C Copyright by the Board of Trustees of the University of Illinois. *
C All rights reserved. *
C *
C This file is part of HDF. The full HDF copyright notice, including *
C terms governing use, modification, and redistribution, is contained in *
C the COPYING file, which can be found at the root of the source code *
C distribution tree, or in https://support.hdfgroup.org/ftp/HDF/releases/. *
C If you do not have access to either file, you may request a copy from *
C help@hdfgroup.org. *
C * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
C
C
subroutine tsdnmmsf (number_failed)
implicit none
C
C
C Program to test writing SDSs with different types of data and
C scales and max/min values.
C
C Input file: none
C Output files: fon.hdf
C
integer number_failed
character*20 myname
parameter (myname = 'sdnmms')
integer dsgdata, dsadata, dssdims, dssrang, dsgrang, dssnt
integer dssdisc, dsgdisc
real*8 f64(10,10), tf64(10,10)
real*8 f64scale(10), tf64scale(10)
real*8 f64max, f64min, tf64max, tf64min
real*4 f32(10,10), tf32(10,10)
real*4 f32scale(10), tf32scale(10)
real*4 f32max, f32min, tf32max, tf32min
characteri8(10,10), ti8(10,10)
character i8scale(10), ti8scale(10), i8max, i8min
character ti8max, ti8min
C Align the Character variables with the surrogate names.
C Need to do this because HDF always assume int8 is a packed 8 bits
C quantities of precisely 1 byte big. Integer*1 may have memory size
C as large as a normal integer (e.g. Cray).
C Cannot just use the character variables as for some compilers,
C the argument address of a character argument is not compatible with
C that of a numerical argument.
integer surri8, surri8max, surri8min, surri8scale
integer surrti8, surrti8max, surrti8min, surrti8scale
equivalence (i8, surri8)
equivalence (i8scale, surri8scale)
equivalence (i8min, surri8min)
equivalence (i8max, surri8max)
equivalence (ti8, surrti8)
equivalence (ti8scale, surrti8scale)
equivalence (ti8min, surrti8min)
equivalence (ti8max, surrti8max)
integer*2 i16(10,10), ti16(10,10)
integer*2 i16scale(10), ti16scale(10), i16max, i16min
integer*2 ti16max, ti16min
integer*4 i32(10,10), ti32(10,10)
integer*4 i32scale(10), ti32scale(10), i32max, i32min
integer*4 ti32max, ti32min
integer i, j, err, err1, err2, err3
integer rank, dims(2)
integer DFNT_NFLOAT64, DFNT_NFLOAT32, DFNT_NINT8, DFNT_NINT16
integer DFNT_NINT32, DFNT_NATIVE
integer DFNT_FLOAT64, DFNT_FLOAT32, DFNT_INT8, DFNT_INT16
integer DFNT_INT32
call ptestban('Testing', myname)
f64max = 40.0
f64min = 0.0
f32max = 40.0
f32min = 0.0
i8max = char(127)
C NOTE: If you get a compile error on the "char(-128)" line, substitute
C the "char(0)" line. Its not quite as thorough a test, but...
i8min = char(0)
C i8min = char(-128)
i16max = 1200
i16min = -1200
i32max = 99999999
i32min = -999999999
rank = 2
dims(1) = 10
dims(2) = 10
number_failed = 0
DFNT_FLOAT64 = 6
DFNT_FLOAT32 = 5
DFNT_INT8 = 20
DFNT_INT16 = 22
DFNT_INT32 = 24
DFNT_NATIVE = 4096
C These should really use a logical OR to compute these values
C However, OR() is not really that portable
DFNT_NFLOAT64 = DFNT_NATIVE + DFNT_FLOAT64
DFNT_NFLOAT32 = DFNT_NATIVE + DFNT_FLOAT32
DFNT_NINT8 = DFNT_NATIVE + DFNT_INT8
DFNT_NINT16 = DFNT_NATIVE + DFNT_INT16
DFNT_NINT32 = DFNT_NATIVE + DFNT_INT32
call MESSAGE(5, 'Creating arrays...')
do 110 i=1,10
do 100 j=1,10
f64(i,j) = (i * 40) + j
f32(i,j) = (i * 40) + j
i8(i,j) = char( (i * 10) + j )
i16(i,j) = (i * 3000) + j
i32(i,j) = (i * 20) + j
100 continue
f64scale(i) = (i * 40) + j
f32scale(i) = (i * 40) + j
i8scale(i) = char((i * 10) + j)
i16scale(i) = (i * 3000) + j
i32scale(i) = (i * 20) + j
110 continue
err1 = dssdims(rank, dims)
C
C Writing dimscale, max/min, and arrays to a single file
C
call MESSAGE(5, 'Writing arrays to single file...')
err = dssnt(DFNT_NFLOAT64)
err1 = dssdisc(1, 10, f64scale)
err2 = dssrang(f64max, f64min)
err3 = dsadata('fon.hdf', rank, dims, f64)
call errchkio(err1, err2, err3, number_failed, 'float64 write')
err = dssnt(DFNT_NFLOAT32)
err1 = dssdisc(1, 10, f32scale)
err2 = dssrang(f32max, f32min)
err3 = dsadata('fon.hdf', rank, dims, f32)
call errchkio(err1, err2, err3, number_failed, 'float32 write')
err = dssnt(DFNT_NINT8)
err1 = dssdisc(1, 10, surri8scale)
err2 = dssrang(surri8max, surri8min)
err3 = dsadata('fon.hdf', rank, dims, surri8)
call errchkio(err1, err2, err3, number_failed, 'int8 write')
err = dssnt(DFNT_NINT16)
err1 = dssdisc(1, 10, i16scale)
err2 = dssrang(i16max, i16min)
err3 = dsadata('fon.hdf', rank, dims, i16)
call errchkio(err1, err2, err3, number_failed, 'int16 write')
err = dssnt(DFNT_NINT32)
err1 = dssdisc(1, 10, i32scale)
err2 = dssrang(i32max, i32min)
err3 = dsadata('fon.hdf', rank, dims, i32)
call errchkio(err1, err2, err3, number_failed, 'int32 write')
C
C Reading back dimscales, max/min, and arrays from single file
C
err1 = dsgdata('fon.hdf', rank, dims, tf64)
err2 = dsgdisc(1, 10, tf64scale)
err3 = dsgrang(tf64max, tf64min)
call errchkio(err1, err2, err3, number_failed, 'float64 read')
err1 = dsgdata('fon.hdf', rank, dims, tf32)
err2 = dsgdisc(1, 10, tf32scale)
err3 = dsgrang(tf32max, tf32min)
call errchkio(err1, err2, err3, number_failed, 'float32 read')
err1 = dsgdata('fon.hdf', rank, dims, surrti8)
err2 = dsgdisc(1, 10, surrti8scale)
err3 = dsgrang(surrti8max, surrti8min)
call errchkio(err1, err2, err3, number_failed, 'int8 read')
err1 = dsgdata('fon.hdf', rank, dims, ti16)
err2 = dsgdisc(1, 10, ti16scale)
err3 = dsgrang(ti16max, ti16min)
call errchkio(err1, err2, err3, number_failed, 'int16 read')
err1 = dsgdata('fon.hdf', rank, dims, ti32)
err2 = dsgdisc(1, 10, ti32scale)
err3 = dsgrang(ti32max, ti32min)
call errchkio(err1, err2, err3, number_failed, 'int32 read')
C
C Checking dimscales, max/min and arrays from single file
C
call MESSAGE(5,
+ 'Checking dimscales, max/min & arrays from single file')
C float64
err1 = 0
err2 = 0
err3 = 0
do 1010 i=1,10
do 1000 j=1,10
if (f64(i,j) .ne. tf64(i,j)) err1 = 1
1000 continue
if (f64scale(i) .ne. tf64scale(i)) err2 = 1
1010 continue
if ((f64max .ne. tf64max) .or. (f64min .ne. tf64min)) err3 = 1
call errchkarr(err1, err2, err3, number_failed, 'float64')
C float32
err1 = 0
err2 = 0
err3 = 0
do 1030 i=1,10
do 1020 j=1,10
if (f32(i,j) .ne. tf32(i,j)) err1 = 1
1020 continue
if (f32scale(i) .ne. tf32scale(i)) err2 = 1
1030 continue
if ((f32max .ne. tf32max) .or. (f32min .ne. tf32min)) err3 = 1
call errchkarr(err1, err2, err3, number_failed, 'float32')
C int8
err1 = 0
err2 = 0
err3 = 0
do 1110 i=1,10
do 1100 j=1,10
if (i8(i,j) .ne. ti8(i,j)) err1 = 1
1100 continue
if (i8scale(i) .ne. ti8scale(i)) err2 = 1
1110 continue
if ((i8max .ne. ti8max) .or. (i8min .ne. ti8min)) err3 = 1
call errchkarr(err1, err2, err3, number_failed, 'int8')
C int16
err1 = 0
err2 = 0
err3 = 0
do 1210 i=1,10
do 1200 j=1,10
if (i16(i,j) .ne. ti16(i,j)) err1 = 1
1200 continue
if (i16scale(i) .ne. ti16scale(i)) err2 = 1
1210 continue
if ((i16max .ne. ti16max) .or. (i16min .ne. ti16min)) err3 = 1
call errchkarr(err1, err2, err3, number_failed, 'int16')
C int32
err1 = 0
err2 = 0
err3 = 0
do 1310 i=1,10
do 1300 j=1,10
if (i32(i,j) .ne. ti32(i,j)) err1 = 1
1300 continue
if (i32scale(i) .ne. ti32scale(i)) err2 = 1
1310 continue
if ((i32max .ne. ti32max) .or. (i32min .ne. ti32min)) err3 = 1
call errchkarr(err1, err2, err3, number_failed, 'int32')
C
C Sum up
C
if (number_failed .gt. 0 ) then
print *, ' >>> ', number_failed, ' TESTS FAILED <<<'
else
call MESSAGE(5, ' >>> ALL TESTS PASSED <<<')
endif
return
end
|