555073630e
This is part one of several Fortran improvements and fixes. This first part removes the now-defunct scripts that are used to generate the .f90 files in the use-mpi-tkr implementation, and just commits the output from those scripts. This makes long-term maintenance of the use-mpi-tkr implementation simpler. cmr=v1.8.2:reviewer=jsquyres:subject=Various Fortran fixes/improvements This commit was SVN r32040.
28 строки
935 B
Fortran
28 строки
935 B
Fortran
! -*- fortran -*-
|
|
!
|
|
! Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
|
|
! University Research and Technology
|
|
! Corporation. All rights reserved.
|
|
! Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
! of Tennessee Research Foundation. All rights
|
|
! reserved.
|
|
! Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
! University of Stuttgart. All rights reserved.
|
|
! Copyright (c) 2004-2005 The Regents of the University of California.
|
|
! All rights reserved.
|
|
! Copyright (c) 2006-2014 Cisco Systems, Inc. All rights reserved.
|
|
! $COPYRIGHT$
|
|
!
|
|
! Additional copyrights may follow
|
|
!
|
|
! $HEADER$
|
|
!
|
|
|
|
function MPI_Wtime()
|
|
implicit none
|
|
double precision :: MPI_Wtime, foo
|
|
call MPI_Wtime_f90(foo)
|
|
MPI_Wtime = foo
|
|
end function MPI_Wtime
|
|
|