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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
|
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
! Copyright by The HDF Group. *
! Copyright by the Board of Trustees of the University of Illinois. *
! All rights reserved. *
! *
! This file is part of HDF5. The full HDF5 copyright notice, including *
! terms governing use, modification, and redistribution, is contained in *
! the COPYING file, which can be found at the root of the source code *
! distribution tree, or in https://www.hdfgroup.org/licenses. *
! If you do not have access to either file, you may request a copy from *
! help@hdfgroup.org. *
! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
!
! main program for subfiling HDF5 Fortran tests
!
#include <H5config_f.inc>
PROGRAM subfiling_test
USE, INTRINSIC :: ISO_C_BINDING, ONLY : C_INT64_T
USE HDF5
USE MPI
USE TH5_MISC
IMPLICIT NONE
INTEGER :: total_error = 0 ! sum of the number of errors
INTEGER :: mpierror ! MPI hdferror flag
INTEGER :: mpi_rank ! rank of the calling process in the communicator
#ifdef H5_HAVE_SUBFILING_VFD
CHARACTER(LEN=7), PARAMETER :: filename = "subf.h5"
INTEGER :: hdferror ! HDF hdferror flag
INTEGER :: mpi_size, mpi_size_ret ! number of processes in the group of communicator
INTEGER :: required, provided
LOGICAL :: file_exists
INTEGER(HID_T) :: fapl_id
INTEGER(HID_T) :: file_id
INTEGER :: comm, comm_ret
INTEGER :: info, info_ret
CHARACTER(LEN=3) :: info_val
CHARACTER(LEN=180) :: subfname
INTEGER :: i, sum
INTEGER(C_INT64_T) inode
TYPE(H5FD_subfiling_config_t) :: vfd_config
TYPE(H5FD_ioc_config_t) :: vfd_config_ioc
LOGICAL :: flag
INTEGER :: nerrors = 0
INTEGER(HID_T) :: driver_id
!
! initialize MPI
!
required = MPI_THREAD_MULTIPLE
CALL mpi_init_thread(required, provided, mpierror)
IF (mpierror .NE. MPI_SUCCESS) THEN
WRITE(*,*) "MPI_INIT_THREAD *FAILED*"
nerrors = nerrors + 1
ENDIF
IF (provided .NE. required) THEN
WRITE(*,*) "MPI doesn't support MPI_Init_thread with MPI_THREAD_MULTIPLE *FAILED*"
nerrors = nerrors + 1
ENDIF
CALL mpi_comm_rank( MPI_COMM_WORLD, mpi_rank, mpierror )
IF (mpierror .NE. MPI_SUCCESS) THEN
WRITE(*,*) "MPI_COMM_RANK *FAILED* Process = ", mpi_rank
nerrors = nerrors + 1
ENDIF
CALL mpi_comm_size( MPI_COMM_WORLD, mpi_size, mpierror )
IF (mpierror .NE. MPI_SUCCESS) THEN
WRITE(*,*) "MPI_COMM_SIZE *FAILED* Process = ", mpi_rank
nerrors = nerrors + 1
ENDIF
IF(nerrors.NE.0)THEN
IF(mpi_rank==0) CALL write_test_status(sum, &
'Testing Initializing mpi_init_thread', total_error)
CALL MPI_Barrier(MPI_COMM_WORLD, mpierror)
CALL mpi_abort(MPI_COMM_WORLD, 1, mpierror)
ENDIF
!
! initialize the HDF5 fortran interface
!
CALL h5open_f(hdferror)
! ***********************************
! Test H5Pset/get_mpi_params_f APIs
! ***********************************
nerrors = 0
IF(mpi_size.GT.2)THEN
IF (mpi_rank.LE.1)THEN
CALL MPI_Comm_split(MPI_COMM_WORLD, 1, mpi_rank, comm, mpierror)
ELSE
CALL MPI_Comm_split(MPI_COMM_WORLD, 0, mpi_rank, comm, mpierror)
ENDIF
CALL MPI_Info_create(info, mpierror)
CALL MPI_Info_set( info, "foo", "bar", mpierror)
IF (mpi_rank.LE.1)THEN
CALL h5pcreate_f(H5P_FILE_ACCESS_F, fapl_id, hdferror)
CALL check("h5pcreate_f", hdferror, nerrors)
CALL H5Pset_mpi_params_f(fapl_id, comm, info, hdferror)
CALL check("H5Pset_mpi_params_f", hdferror, nerrors)
CALL H5Pget_mpi_params_f(fapl_id, comm_ret, info_ret, hdferror)
CALL check("H5Pget_mpi_params_f", hdferror, nerrors)
CALL mpi_comm_size(comm_ret, mpi_size_ret, mpierror)
IF(mpi_size_ret.NE.2)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed H5Pset_mpi_params_f and H5Pget_mpi_params_f sequence"
nerrors = nerrors + 1
ENDIF
CALL mpi_info_get(info_ret,"foo", 3, info_val, flag, mpierror)
IF(flag .EQV. .TRUE.)THEN
IF(info_val.NE."bar")THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed H5Pset_mpi_params_f and H5Pget_mpi_params_f sequence"
nerrors = nerrors + 1
ENDIF
ELSE
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed to find info value with mpi_info_get"
nerrors = nerrors + 1
ENDIF
CALL h5pclose_f(fapl_id, hdferror)
ENDIF
CALL MPI_Comm_free(comm, mpierror)
CALL MPI_Info_free(info, mpierror)
ENDIF
CALL MPI_REDUCE(nerrors, sum, 1, MPI_INTEGER, MPI_SUM, 0, MPI_COMM_WORLD, mpierror)
IF(mpi_rank==0) CALL write_test_status(sum, &
'Testing H5Pset/get_mpi_params_f', total_error)
! *********************************************************
! Setup file access property list with subfiling I/O access
! *********************************************************
nerrors = 0
CALL h5pcreate_f(H5P_FILE_ACCESS_F, fapl_id, hdferror)
CALL check("h5pcreate_f", hdferror, nerrors)
CALL H5Pset_mpi_params_f(fapl_id, MPI_COMM_WORLD, MPI_INFO_NULL, hdferror)
CALL check("H5Pset_mpi_params_f", hdferror, nerrors)
CALL H5Pget_mpi_params_f(fapl_id, comm, info, hdferror)
CALL check("H5Pset_mpi_params_f", hdferror, nerrors)
CALL mpi_comm_size(comm, mpi_size_ret, mpierror)
IF(mpi_size_ret.NE.mpi_size)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed H5Pset_mpi_params_f and H5Pget_mpi_params_f sequence"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Pset/get_mpi_params_f with defaults ', total_error)
! Verify no new enum parameters have been added in C and not updated in Fortran
IF( IOC_SELECTION_OPTIONS_F .NE. 4)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Mismatch between Fortran and C H5FD_subfiling_ioc_select_t definitions"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing Subfiling FD is registered', total_error)
! *********************************************************
! Check the default subfiling parameters
! *********************************************************
nerrors = 0
CALL h5pset_fapl_subfiling_f(fapl_id, hdferror)
CALL check("h5pset_fapl_subfiling_f", hdferror, nerrors)
CALL h5pget_driver_f(fapl_id, driver_id, hdferror)
CALL check("h5pget_driver_f", hdferror, nerrors)
IF( driver_id .NE. H5FD_SUBFILING_F) THEN
WRITE(*,*) "Wrong file driver type returned"
nerrors = nerrors + 1
ENDIF
! *********************************************************
! Check the default parameters for subfiling and ioc
! *********************************************************
CALL h5pget_fapl_subfiling_f(fapl_id, vfd_config, hdferror)
CALL check("h5pget_fapl_subfiling_f", hdferror, nerrors)
CALL h5pset_fapl_ioc_f(vfd_config%ioc_fapl_id, hdferror)
CALL check("h5pset_fapl_ioc_f", hdferror, nerrors)
CALL h5pget_fapl_ioc_f(vfd_config%ioc_fapl_id, vfd_config_ioc, hdferror)
CALL check("h5pget_fapl_ioc_f", hdferror, nerrors)
IF(vfd_config%magic .NE. H5FD_SUBFILING_FAPL_MAGIC_F .OR. &
vfd_config%version .NE. H5FD_SUBFILING_CURR_FAPL_VERSION_F .OR. &
vfd_config%require_ioc .NEQV. .TRUE. .OR. &
vfd_config%shared_cfg%ioc_selection .NE. SELECT_IOC_ONE_PER_NODE_F .OR. &
vfd_config%shared_cfg%stripe_size .NE. H5FD_SUBFILING_DEFAULT_STRIPE_SIZE_F .OR. &
vfd_config%shared_cfg%stripe_count .NE. H5FD_SUBFILING_DEFAULT_STRIPE_COUNT_F &
)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed h5pget_fapl_subfiling_f"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Pset/get_fapl_subfiling_f with defaults', total_error)
nerrors = 0
IF(vfd_config_ioc%magic.NE. H5FD_IOC_FAPL_MAGIC_F .OR. &
vfd_config_ioc%version .NE. H5FD_IOC_CURR_FAPL_VERSION_F .OR. &
vfd_config_ioc%thread_pool_size .NE. H5FD_IOC_DEFAULT_THREAD_POOL_SIZE_F &
)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed h5pget_fapl_ioc_f"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Pset/get_fapl_ioc_f with defaults', total_error)
! *********************************************************
! Testing creating a file with subfiling, default settings
! *********************************************************
CALL h5fcreate_f(filename, H5F_ACC_TRUNC_F, file_id, hdferror, access_prp = fapl_id)
CALL check("h5fcreate_f", hdferror, nerrors)
CALL h5fclose_f(file_id, hdferror)
CALL check("h5fclose_f", hdferror, nerrors)
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Fcreate with subfiling with default settings', total_error)
! *********************************************************
! Testing creating a file with subfiling, modified settings
! *********************************************************
! Testing modifying defaults for subfiling FD
vfd_config%magic = H5FD_SUBFILING_FAPL_MAGIC_F
vfd_config%version = H5FD_SUBFILING_CURR_FAPL_VERSION_F
vfd_config%require_ioc = .TRUE.
vfd_config%shared_cfg%ioc_selection = SELECT_IOC_ONE_PER_NODE_F
vfd_config%shared_cfg%stripe_size = 16*1024*1024
vfd_config%shared_cfg%stripe_count = 3
nerrors = 0
CALL h5pset_fapl_subfiling_f(fapl_id, hdferror, vfd_config)
CALL check("h5pset_fapl_ioc_f", hdferror, nerrors)
CALL h5pget_fapl_subfiling_f(fapl_id, vfd_config, hdferror)
CALL check("h5pget_fapl_ioc_f", hdferror, nerrors)
IF(vfd_config%magic .NE. H5FD_SUBFILING_FAPL_MAGIC_F .OR. &
vfd_config%version .NE. H5FD_SUBFILING_CURR_FAPL_VERSION_F .OR. &
vfd_config%require_ioc .NEQV. .TRUE. .OR. &
vfd_config%shared_cfg%ioc_selection .NE. SELECT_IOC_ONE_PER_NODE_F .OR. &
vfd_config%shared_cfg%stripe_size .NE. 16*1024*1024 .OR. &
vfd_config%shared_cfg%stripe_count .NE. 3 &
)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed h5pget_fapl_subfiling_f"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Pset/get_fapl_subfiling_f with custom settings', total_error)
vfd_config_ioc%magic = H5FD_IOC_FAPL_MAGIC_F
vfd_config_ioc%version = H5FD_IOC_CURR_FAPL_VERSION_F
vfd_config_ioc%thread_pool_size = 2
nerrors = 0
CALL h5pset_fapl_ioc_f(vfd_config%ioc_fapl_id, hdferror, vfd_config_ioc)
CALL check("h5pset_fapl_ioc_f", hdferror, nerrors)
CALL h5pget_fapl_ioc_f(vfd_config%ioc_fapl_id, vfd_config_ioc, hdferror)
CALL check("h5pget_fapl_ioc_f", hdferror, nerrors)
IF(vfd_config_ioc%magic .NE. H5FD_IOC_FAPL_MAGIC_F .OR. &
vfd_config_ioc%version .NE. H5FD_IOC_CURR_FAPL_VERSION_F .OR. &
vfd_config_ioc%thread_pool_size .NE. 2 &
)THEN
IF(mpi_rank.EQ.0) &
WRITE(*,*) "Failed h5pget_fapl_ioc_f"
nerrors = nerrors + 1
ENDIF
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Pset/get_fapl_ioc_f with custom settings', total_error)
! *********************************************************
! Testing creating a file with subfiling, custom settings
! *********************************************************
CALL h5fcreate_f(filename, H5F_ACC_TRUNC_F, file_id, hdferror, access_prp = fapl_id)
CALL check("h5pcreate_f", hdferror, nerrors)
CALL h5fclose_f(file_id, hdferror)
CALL check("h5fclose_f", hdferror, nerrors)
IF(mpi_rank.EQ.0)THEN
INQUIRE(FILE=filename, EXIST=file_exists)
IF(.NOT.file_exists)THEN
WRITE(*,"(A,A)") "Failed to find the stub subfile ",TRIM(filename)
nerrors = nerrors + 1
ENDIF
CALL EXECUTE_COMMAND_LINE("stat --format='%i' "//filename//" >> tmp_inode", EXITSTAT=i)
IF(i.ne.0)THEN
WRITE(*,"(A,A)") "Failed to stat the stub subfile ",TRIM(filename)
nerrors = nerrors + 1
ENDIF
OPEN(11,FILE="tmp_inode")
READ(11,*) inode
CLOSE(11,STATUS="delete")
DO i = 1, vfd_config%shared_cfg%stripe_count
WRITE(subfname,'(A,".subfile_",I0,"_",I0,"_of_",I0)') filename,inode,i,vfd_config%shared_cfg%stripe_count
INQUIRE(FILE=subfname, EXIST=file_exists)
IF(.NOT.file_exists)THEN
WRITE(*,"(A,A)") "Failed to create the subfile ",TRIM(subfname)
nerrors = nerrors + 1
ENDIF
ENDDO
ENDIF
CALL h5pclose_f(fapl_id, hdferror)
CALL check("h5pclose_f", hdferror, nerrors)
IF(mpi_rank==0) CALL write_test_status(nerrors, &
'Testing H5Fcreate with subfiling with custom settings', total_error)
!
! close HDF5 interface
!
CALL h5close_f(hdferror)
CALL MPI_ALLREDUCE(total_error, sum, 1, MPI_INTEGER, MPI_SUM, MPI_COMM_WORLD, mpierror)
!
! close MPI
!
IF (sum == 0) THEN
CALL mpi_finalize(mpierror)
IF (mpierror .NE. MPI_SUCCESS) THEN
WRITE(*,*) "MPI_FINALIZE *FAILED* Process = ", mpi_rank
ENDIF
ELSE
WRITE(*,*) 'Errors detected in process ', mpi_rank
CALL mpi_abort(MPI_COMM_WORLD, 1, mpierror)
IF (mpierror .NE. MPI_SUCCESS) THEN
WRITE(*,*) "MPI_ABORT *FAILED* Process = ", mpi_rank
ENDIF
ENDIF
!
! end main program
!
#else
CALL mpi_init(mpierror)
CALL mpi_comm_rank(MPI_COMM_WORLD, mpi_rank, mpierror)
IF(mpi_rank==0) CALL write_test_status( -1, &
'Subfiling not enabled', total_error)
CALL mpi_finalize(mpierror)
#endif
END PROGRAM subfiling_test
|