[Beowulf] g77 limits...
Many of your questions may have already been answered in earlier discussions or in the FAQ. The search results page will indicate current discussions as well as past list serves, articles, and papers.
Toon Moene toon at moene.indiv.nluug.nlThu Feb 23 11:46:04 PST 2006
- Previous message: [Beowulf] g77 limits...
- Next message: [Beowulf] g77 limits...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
I wrote:
> SUBROUTINE SUB(A, N)
> DIMENSION A(N)
> DO I = 1, N
> A(I) = I
> ENDDO
> END
Grrrrr .... Little Endian Machines - you got to love to hate them. This
should of course be:
SUBROUTINE SUB(A, N)
INTEGER*8 I, N
DIMENSION A(N)
DO I = 1, N
A(I) = I
ENDDO
END
To maximize the "runes" effect I've written this in all uppercase :-)
--
Toon Moene - e-mail: toon at moene.indiv.nluug.nl - phone: +31 346 214290
Saturnushof 14, 3738 XG Maartensdijk, The Netherlands
A maintainer of GNU Fortran 95: http://gcc.gnu.org/fortran/
My next laptop will have a crank
- Previous message: [Beowulf] g77 limits...
- Next message: [Beowulf] g77 limits...
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Beowulf mailing list
