- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SUBROUTINE LUCINQP(AM,NDDMST,N,IER)
DIMENSION AM(40,40),V(40)
COMPLEX*32 AM
REAL*16 V
REAL*16 SUM
DO 1309 I=1,N
SUM=0.0Q0
DO 1319 J=1,N
1319 SUM=SUM+REAL(AM(I,J))**2+IMAG(AM(I,J))**2
1309 V(I)=1.0Q0/SUM
return
end
gives the message
t.f(1): warning #18000: The specified alignment (32) cannot be honored. Instead an alignment of 16 is used
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
SUBROUTINE LUCINQP(AM,NDDMST,N,IER)
DIMENSION AM(40,40),V(40)
COMPLEX*32 AM
REAL*16 V
REAL*16 SUM
DO 1309 I=1,N
SUM=0.0Q0
DO 1319 J=1,N
1319 SUM=SUM+REAL(AM(I,J))**2+IMAG(AM(I,J))**2
1309 V(I)=1.0Q0/SUM
return
end
gives the message
t.f(1): warning #18000: The specified alignment (32) cannot be honored. Instead an alignment of 16 is used
I don't get any message with ifort 11 beta Intel64. You must have used a different compiler; how is anyone to guess? Are you implying that it didn't work? By the way, you are lucky if non-standard quad precision in the style of 20 years ago is working for you. In particular, use of REAL this way could be ambiguous.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This is a bug that is fixed in version 11.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page