Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!cmcl2!beta!cochiti.lanl.gov!jlg From: jlg@cochiti.lanl.gov (Jim Giles) Newsgroups: comp.lang.fortran Subject: Re: NAG Fortran 90 announcement Message-ID: <26631@beta.gov> Date: 27 Jun 91 22:54:34 GMT References: <1991Jun25.214710.21152@murdoch.acc.Virginia.EDU> <26487@beta.gov> <1991Jun26.173409.443@weyrich.UUCP> <1991Jun27.180712.7293@murdoch.acc.Virginia.EDU> Sender: news@beta.gov Organization: Los Alamos National Laboratory Lines: 46 In article <1991Jun27.180712.7293@murdoch.acc.Virginia.EDU>, gsh7w@astsun8.astro.Virginia.EDU (Greg Hennessy) writes: |> [...] |> I am saying that from your discription the Fortran Journal did not |> consider vectorizing C compilers, so there are no facts to support you |> guess that there would be an "enormous slowdown" in code translated |> into C rather than compiled directly by a fortran compiler. The following codes (Fortran and C): subroutine copyit(a,b,n) void copyit(a,b,n) integer n int n; real a(n), b(n) float *a, *b; integer i, p, q { float *z; int p, q; p = irtc() p = _rtc(); do i=1,n a(i) = b(i) for(z=a; z