-
Notifications
You must be signed in to change notification settings - Fork 12
/
io_read_inflow.f90
52 lines (46 loc) · 1.94 KB
/
io_read_inflow.f90
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
!=======================================================================
! This is part of the 2DECOMP&FFT library
!
! 2DECOMP&FFT is a software framework for general-purpose 2D (pencil)
! decomposition. It also implements a highly scalable distributed
! three-dimensional Fast Fourier Transform (FFT).
!
! Copyright (C) 2009-2011 Ning Li, the Numerical Algorithms Group (NAG)
!
!=======================================================================
! This file contain common code to be included by subroutines
! 'read_var_...' in io.f90
! Using MPI-IO to read a distributed 3D variable from a file. File
! operations (open/close) need to be done in calling application. This
! allows multiple variables to be read from a single file. Together
! with the corresponding write operation, this is the perfect solution
! for applications to perform restart/checkpointing.
if (present(opt_decomp)) then
decomp = opt_decomp
else
call get_decomp_info(decomp)
end if
! Create file type and set file view
sizes(1) = NTimeSteps
sizes(2) = decomp%ysz(2)
sizes(3) = decomp%zsz(3)
subsizes(1) = NTimeSteps
subsizes(2) = decomp%xsz(2)
subsizes(3) = decomp%xsz(3)
starts(1) = 0 ! 0-based index
starts(2) = decomp%xst(2)-1
starts(3) = decomp%xst(3)-1
call MPI_TYPE_CREATE_SUBARRAY(3, sizes, subsizes, starts, &
MPI_ORDER_FORTRAN, data_type, newtype, ierror)
call MPI_TYPE_COMMIT(newtype,ierror)
call MPI_FILE_SET_VIEW(fh,disp,data_type, &
newtype,'native',MPI_INFO_NULL,ierror)
call MPI_FILE_READ_ALL(fh, var, &
subsizes(1)*subsizes(2)*subsizes(3), &
data_type, MPI_STATUS_IGNORE, ierror)
call MPI_TYPE_FREE(newtype,ierror)
! update displacement for the next read operation
disp = disp + sizes(1)*sizes(2)*sizes(3)*mytype_bytes
if (data_type == complex_type) then
disp = disp + sizes(1)*sizes(2)*sizes(3)*mytype_bytes
end if