⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spawnf90.f90

📁 mpi并行计算的c++代码 可用vc或gcc编译通过 可以用来搭建并行计算试验环境
💻 F90
字号:
! This file created from test/mpi/f77/spawn/spawnf.f with f77tof90! -*- Mode: Fortran; -*- !!  (C) 2003 by Argonne National Laboratory.!      See COPYRIGHT in top-level directory.!        program main        use mpi        integer errs, err        integer rank, size, rsize, i        integer np        integer errcodes(2)        integer parentcomm, intercomm        integer status(MPI_STATUS_SIZE)        errs = 0        np   = 2        call MTest_Init( ierr )        call MPI_Comm_get_parent( parentcomm, ierr )        if (parentcomm .eq. MPI_COMM_NULL) then!          Create 2 more processes            call MPI_Comm_spawn( "./spawnf90", MPI_ARGV_NULL, np, &      &          MPI_INFO_NULL, 0, MPI_COMM_WORLD, intercomm, errcodes &      &          ,ierr )         else           intercomm = parentcomm        endif!   We now have a valid intercomm         call MPI_Comm_remote_size( intercomm, rsize, ierr )        call MPI_Comm_size( intercomm, size, ierr )        call MPI_Comm_rank( intercomm, rank, ierr )        if (parentcomm .eq. MPI_COMM_NULL) then!           Master           if (rsize .ne. np) then              errs = errs + 1              print *, "Did not create ", np, " processes (got ", rsize, &      &             ")"            endif           if (rank .eq. 0) then              do i=0,rsize-1                 call MPI_Send( i, 1, MPI_INTEGER, i, 0, intercomm, ierr &      &                )               enddo!       We could use intercomm reduce to get the errors from the !       children, but we'll use a simpler loop to make sure that!       we get valid data               do i=0, rsize-1                 call MPI_Recv( err, 1, MPI_INTEGER, i, 1, intercomm, &      &                MPI_STATUS_IGNORE,  ierr )                 errs = errs + err             enddo          endif        else !             Child            if (size .ne. np) then              errs = errs + 1              print *, "(Child) Did not create ", np, " processes (got " &      &             ,size, ")"            endif           call MPI_Recv( i, 1, MPI_INTEGER, 0, 0, intercomm, status, &      &          ierr )         if (i .ne. rank) then            errs = errs + 1            print *, "Unexpected rank on child ", rank, "(",i,")"         endif!       Send the errs back to the master process          call MPI_Ssend( errs, 1, MPI_INTEGER, 0, 1, intercomm, ierr )        endif!       It isn't necessary to free the intercomm, but it should not hurt        call MPI_Comm_free( intercomm, ierr )!       Note that the MTest_Finalize get errs only over COMM_WORLD !       Note also that both the parent and child will generate "No!       Errors" if both call MTest_Finalize         if (parentcomm .eq. MPI_COMM_NULL) then           call MTest_Finalize( errs )        endif        call MPI_Finalize( ierr )        end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -