📄 mpi_comm_spawn_multiple_f90.f90.sh
字号:
#! /bin/sh## Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana# University Research and Technology# Corporation. All rights reserved.# Copyright (c) 2004-2005 The Regents of the University of California.# All rights reserved.# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.# $COPYRIGHT$# # Additional copyrights may follow# # $HEADER$### This file generates a Fortran code to bridge between an explicit F90# generic interface and the F77 implementation.## This file is automatically generated by either of the scripts# ../xml/create_mpi_f90_medium.f90.sh or# ../xml/create_mpi_f90_large.f90.sh#. "$1/fortran_kinds.sh"# This entire file is only generated in small or larger modules. So# if we're not at least small, bail now.check_size smallif test "$output" = "0"; then exit 0fi# Ok, we should continue.output() { procedure=$1 proc="$1$2" argv_type=$3 cat <<EOFsubroutine ${proc}(count, array_of_commands, array_of_argv, & array_of_maxprocs, array_of_info, & root, comm, intercomm, array_of_errcodes, ierr) include 'mpif-config.h' integer, intent(in) :: count character(len=*), dimension(*), intent(in) :: array_of_commands $argv_type, intent(in) :: array_of_argv integer, dimension(*), intent(in) :: array_of_maxprocs integer, dimension(*), intent(in) :: array_of_info integer, intent(in) :: root integer, intent(in) :: comm integer, intent(out) :: intercomm integer, dimension(*), intent(out) :: array_of_errcodes integer, intent(out) :: ierr call ${procedure}(count, array_of_commands, array_of_argv, & array_of_maxprocs, array_of_info, root, comm, intercomm, & array_of_errcodes, ierr)end subroutine ${proc}EOF}# A = real argv, N = ARGV_NULLoutput MPI_Comm_spawn_multiple A "character(len=*), dimension(count,*)"output MPI_Comm_spawn_multiple N "double precision"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -