fortran - MPI 顺序写入文件

标签 fortran mpi paraview mpi-io

我正在从我的 Fortran CFD 求解器编写并行 VTK 文件 (pvti)。该文件实际上只是每条数据的所有单独文件的列表。运行 MPI,如果我让每个进程将其单个文件的名称写入标准输出

print *, name

然后我得到每个文件的一个很好的列表,即

block0.vti
block1.vti
block2.vti

这正是我想要的列表。但是如果我写入文件

write(9,*) name

那么我只能在文件中得到一个输出。有没有一种简单的方法可以在不传输数据的情况下复制其标准输出版本?

最佳答案

您可以尝试调整以下使用 MPI-IO 的内容,这实际上是确保多个进程有序文件的唯一方法。它确实假设行尾字符,并且所有行的长度相同(如果需要,则用空格填充),但我认为仅此而已。

Program ascii_mpiio

  ! simple example to show MPI-IO "emulating" Fortran 
  ! formatted direct access files. Note can not use the latter
  ! in parallel with multiple processes writing to one file
  ! is behaviour is not defined (and DOES go wrong on certain
  ! machines)

  Use mpi

  Implicit None

  ! All the "lines" in the file will be this length
  Integer, Parameter :: max_line_length = 30

  ! We also need to explicitly write a carriage return. 
  ! here I am assuming  ASCII
  Character, Parameter :: lf = Achar( 10 )

  ! Buffer to hold a line
  Character( Len = max_line_length + 1 ) :: line

  Integer :: me, nproc
  Integer :: fh
  Integer :: record
  Integer :: error
  Integer :: i

  ! Initialise MPI
  Call mpi_init( error )
  Call mpi_comm_rank( mpi_comm_world, me   , error )
  Call mpi_comm_size( mpi_comm_world, nproc, error )

  ! Create a MPI derived type that will contain a line of the final
  ! output just before we write it using MPI-IO. Note this also
  ! includes the carriage return at the end of the line.
  Call mpi_type_contiguous( max_line_length + 1, mpi_character, record, error )
  Call mpi_type_commit( record, error )

  ! Open the file. prob want to change the path and name
  Call mpi_file_open( mpi_comm_world, '/home/ian/test/mpiio/stuff.dat', &
       mpi_mode_wronly + mpi_mode_create, &
       mpi_info_null, fh, error )

  ! Set the view for the file. Note the etype and ftype are both RECORD,
  ! the derived type used to represent a whole line, and the displacement
  ! is zero. Thus
  ! a) Each process can "see" all of the file
  ! b) The unit of displacement in subsequent calls is a line. 
  !    Thus if we have a displacement of zero we write to the first line,
  !    1 means we write to the second line, and in general i means
  !    we write to the (i+1)th line
  Call mpi_file_set_view( fh, 0_mpi_offset_kind, record, record, &
       'native', mpi_info_null, error )

  ! Make each process write to a different part of the file
  Do i = me, 50, nproc
     ! Use an internal write to transfer the data into the
     ! character buffer
     Write( line, '( "This is line ", i0, " from ", i0 )' ) i, me
     !Remember the line feed at the end of the line
     line( Len( line ):Len( line ) ) = lf
     ! Write with a displacement of i, and thus to line i+1
     ! in the file
     Call mpi_file_write_at( fh, Int( i, mpi_offset_kind ), &
          line, 1, record, mpi_status_ignore, error )
  End Do

  ! Close the file
  Call mpi_file_close( fh, error )

  ! Tidy up
  Call mpi_type_free( record, error )

  Call mpi_finalize( error )

End Program ascii_mpii

另请注意,您只是幸运地获得了标准输出“解决方案”,并不能保证您能将其全部排序好。

关于fortran - MPI 顺序写入文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23361215/

相关文章:

performance - 如何在 Fortran 中执行整数 log2() ?

c++ - 编译混合的 GNU Fortran/C++ MPI 共享库

使用 MPI 将 GMP 代码转换为并行代码

mpi - MPI_Type_commit 是否隐式调用 MPI_COMM_WORLD 中所有进程的屏障?

c++ - 写入二进制 VTK 文件时出错

python - 如何将自定义数组添加到 paraview 中的多数据?

algorithm - Fortran 中的 Morris Pratt 表

fortran - 引用返回结构/派生类型的函数

interface - fortran选择按过程调用派生类型

python - 从 Python 脚本创建多 View Paraview 屏幕截图