[Beowulf] g77 limits...
    Toon Moene 
    toon at moene.indiv.nluug.nl
       
    Thu Feb 23 11:46:04 PST 2006
    
    
  
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
    
    
More information about the Beowulf
mailing list