- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Fortran /align qualifiers
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 11:06 AM
08-18-2005 11:06 AM
It had /align=(rec=pack,comm=natu)
Now its /align=(comm=(pack,nomulti),reco=natu)
but the data does not align correctly.
Does anyone know the modern equivalent of the old /align qualifiers?
Thank you.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 05:03 PM
08-18-2005 05:03 PM
Re: Fortran /align qualifiers
if 64 bit then the "reco=natural" will cause problems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 05:29 PM
08-18-2005 05:29 PM
Solution/ALIGN=(RECORD=PACK,COMMON=NATURAL)
to work. Note that:
/ALIGN=(REC=PACK)
will NOT work because they keyword "REC" is considered ambiguous.
Note that (COMM=(PACK,NOMULTI),RECO=NATU) does the exact opposite of (REC=PACK,COMMON=NATURAL). I'm assuming you want common blocks packed and records naturally aligned.
All that said, it would be very much in your interest to modify your code so that EVERYTHING is naturally aligned.
If that doesn't help, please post the EXACT command that's failing and EXACT AND COMPLETE error messages.
Also give some detail about what you mean by "does not align correctly". Show us what you're declaring and how you want it aligned.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-18-2005 07:16 PM
08-18-2005 07:16 PM
Re: Fortran /align qualifiers
hope this HP documentation page can help you
http://h71000.www7.hp.com/doc/82final/6443/6443pro_003.html#sec_fortran_quals
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-19-2005 03:34 AM
08-19-2005 03:34 AM