2005-01-18 19:15:55 +03:00
|
|
|
#! /bin/sh
|
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
2005-08-24 06:11:02 +04:00
|
|
|
. "$1/fortran_kinds.sh"
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
# This entire file is only generated in medium/large modules. So if
|
|
|
|
# we're not at least medium, bail now.
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
check_size medium
|
|
|
|
if test "$output" = "0"; then
|
|
|
|
exit 0
|
|
|
|
fi
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
# Ok, we should continue.
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
allranks="0 $ranks"
|
2005-01-18 19:15:55 +03:00
|
|
|
|
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
output() {
|
|
|
|
procedure=$1
|
|
|
|
rank=$2
|
|
|
|
type=$4
|
|
|
|
proc="$1$2D$3"
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
cat <<EOF
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
subroutine ${proc}(buf, count, datatype, dest, tag, &
|
|
|
|
comm, request, ierr)
|
|
|
|
include "mpif.h"
|
|
|
|
${type}, intent(in) :: buf
|
|
|
|
integer, intent(in) :: count
|
|
|
|
integer, intent(in) :: datatype
|
|
|
|
integer, intent(in) :: dest
|
|
|
|
integer, intent(in) :: tag
|
|
|
|
integer, intent(in) :: comm
|
|
|
|
integer, intent(out) :: request
|
|
|
|
integer, intent(out) :: ierr
|
|
|
|
call ${procedure}(buf, count, datatype, dest, tag, &
|
|
|
|
comm, request, ierr)
|
|
|
|
end subroutine ${proc}
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
EOF
|
|
|
|
}
|
2005-01-18 19:15:55 +03:00
|
|
|
|
2006-04-11 07:33:38 +04:00
|
|
|
for rank in $allranks
|
2005-01-18 19:15:55 +03:00
|
|
|
do
|
2006-04-11 07:33:38 +04:00
|
|
|
case "$rank" in 0) dim='' ; esac
|
|
|
|
case "$rank" in 1) dim=', dimension(:)' ; esac
|
|
|
|
case "$rank" in 2) dim=', dimension(:,:)' ; esac
|
|
|
|
case "$rank" in 3) dim=', dimension(:,:,:)' ; esac
|
|
|
|
case "$rank" in 4) dim=', dimension(:,:,:,:)' ; esac
|
|
|
|
case "$rank" in 5) dim=', dimension(:,:,:,:,:)' ; esac
|
|
|
|
case "$rank" in 6) dim=', dimension(:,:,:,:,:,:)' ; esac
|
|
|
|
case "$rank" in 7) dim=', dimension(:,:,:,:,:,:,:)' ; esac
|
|
|
|
|
|
|
|
output MPI_Ssend_init ${rank} CH "character${dim}"
|
|
|
|
output MPI_Ssend_init ${rank} L "logical${dim}"
|
2005-01-18 19:15:55 +03:00
|
|
|
for kind in $ikinds
|
|
|
|
do
|
2006-04-11 07:33:38 +04:00
|
|
|
output MPI_Ssend_init ${rank} I${kind} "integer*${kind}${dim}"
|
2005-01-18 19:15:55 +03:00
|
|
|
done
|
|
|
|
for kind in $rkinds
|
|
|
|
do
|
2006-04-11 07:33:38 +04:00
|
|
|
output MPI_Ssend_init ${rank} R${kind} "real*${kind}${dim}"
|
2005-01-18 19:15:55 +03:00
|
|
|
done
|
|
|
|
for kind in $ckinds
|
|
|
|
do
|
2006-04-11 07:33:38 +04:00
|
|
|
output MPI_Ssend_init ${rank} C${kind} "complex*${kind}${dim}"
|
2005-01-18 19:15:55 +03:00
|
|
|
done
|
|
|
|
done
|