Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Fortran?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  12 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
glen herrmannsfeldt  
View profile  
 More options Feb 7, 2:08 pm
Newsgroups: comp.os.vms
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Tue, 7 Feb 2012 19:08:58 +0000 (UTC)
Local: Tues, Feb 7 2012 2:08 pm
Subject: Fortran?
Does anyone know where to get Fortran for a hobbyist IA64 system?

(Is anyone here actually using Fortran on IA64?)

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
abrsvc  
View profile  
 More options Feb 7, 2:14 pm
Newsgroups: comp.os.vms
From: abrsvc <dansabrservi...@yahoo.com>
Date: Tue, 7 Feb 2012 11:14:49 -0800 (PST)
Local: Tues, Feb 7 2012 2:14 pm
Subject: Re: Fortran?
On Feb 7, 2:08 pm, glen herrmannsfeldt <g...@ugcs.caltech.edu> wrote:

> Does anyone know where to get Fortran for a hobbyist IA64 system?

> (Is anyone here actually using Fortran on IA64?)

> -- glen

FORTRAN is on the layered products DVD.  Please note that it is the
F90/95 compiler only NOT the F77.  I support some code that originated
in 1976 and has some portions that need to be modified to work on the
I64 platform.  If you are upgrading from Alpha and use the /F77
switch, be aware that changes are likely.

The 2 main categories for me thus far are:

1) F90/95 no longer supports octal constants (the use of "007" for
example).  This is nothing more than an annoyance as the code can
simply be changed to use decimal constants.  These were left over from
PDP11 days.

2) The standard has always stated that there was no particular order
of evaluation for segments of an IF statement.  In other words, should
you have an IF statement with multiple conditions that are logically
connected (.and., .or. etc) these segments can be evaluated in any
order.  It seems that F77 often evaluated them in left to right
order.  This is no longer the case and caused problems for the code I
support.  Please note that the code should NEVER require or depend
upon this evaluation order.

Dan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
glen herrmannsfeldt  
View profile  
 More options Feb 7, 2:22 pm
Newsgroups: comp.os.vms
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Tue, 7 Feb 2012 19:22:07 +0000 (UTC)
Local: Tues, Feb 7 2012 2:22 pm
Subject: Re: Fortran?

abrsvc <dansabrservi...@yahoo.com> wrote:
> On Feb 7, 2:08 pm, glen herrmannsfeldt <g...@ugcs.caltech.edu> wrote:
>> Does anyone know where to get Fortran for a hobbyist IA64 system?

(snip)

> FORTRAN is on the layered products DVD.  Please note that it is the
> F90/95 compiler only NOT the F77.  I support some code that originated
> in 1976 and has some portions that need to be modified to work on the
> I64 platform.  If you are upgrading from Alpha and use the /F77
> switch, be aware that changes are likely.

I have VAX and IA64, but still not Alpha. If I want to complete
my collection of VMS systems, then I will need one, but not so far.

> The 2 main categories for me thus far are:
> 1) F90/95 no longer supports octal constants (the use of "007" for
> example).  This is nothing more than an annoyance as the code can
> simply be changed to use decimal constants.  These were left over from
> PDP11 days.

I was using OS/360 before any DEC systems, and so was more used
to hex constants. For VAX/VMS, I always use(d) hex.

> 2) The standard has always stated that there was no particular order
> of evaluation for segments of an IF statement.  In other words, should
> you have an IF statement with multiple conditions that are logically
> connected (.and., .or. etc) these segments can be evaluated in any
> order.  It seems that F77 often evaluated them in left to right
> order.  This is no longer the case and caused problems for the code I
> support.  Please note that the code should NEVER require or depend
> upon this evaluation order.

I was not so long ago trying to get a program that I worked on
many years ago running again. With bounds-check turned on, it
would fail on such IF statements. In most cases, fetching element
zero of an array won't cause problems in actual code, but bounds
check catches it anyway.

There is some suggestion to add new logical operators to
Fortran, though still not in the 2008 standard. Maybe for
the next one.

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
abrsvc  
View profile  
 More options Feb 7, 2:58 pm
Newsgroups: comp.os.vms
From: abrsvc <dansabrservi...@yahoo.com>
Date: Tue, 7 Feb 2012 11:58:48 -0800 (PST)
Local: Tues, Feb 7 2012 2:58 pm
Subject: Re: Fortran?
On Feb 7, 2:22 pm, glen herrmannsfeldt <g...@ugcs.caltech.edu> wrote:

Look for a DS10.  Quiet machine (more so than the DS10L) and quick if
you get the 677Mhz version.  You can get them on Ebay for around $300-
$400 if you keep watch.

Dan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ken Fairfield  
View profile  
 More options Feb 7, 3:39 pm
Newsgroups: comp.os.vms
From: Ken Fairfield <ken.fairfi...@gmail.com>
Date: Tue, 7 Feb 2012 12:39:46 -0800 (PST)
Local: Tues, Feb 7 2012 3:39 pm
Subject: Re: Fortran?
Was there ever VMS Fortran on IA64?  

Early on, there was talk of using the Intel
compilers, but I'm reasonably certain that
never happened.  But I'm also not certain
that VMS Fortran got ported (more correctly,
translated) to IA64...

    -Ken


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
glen herrmannsfeldt  
View profile  
 More options Feb 7, 3:43 pm
Newsgroups: comp.os.vms
From: glen herrmannsfeldt <g...@ugcs.caltech.edu>
Date: Tue, 7 Feb 2012 20:43:41 +0000 (UTC)
Local: Tues, Feb 7 2012 3:43 pm
Subject: Re: Fortran?

Ken Fairfield <ken.fairfi...@gmail.com> wrote:
> Was there ever VMS Fortran on IA64?  
> Early on, there was talk of using the Intel
> compilers, but I'm reasonably certain that
> never happened.  But I'm also not certain
> that VMS Fortran got ported (more correctly,
> translated) to IA64...

I thought I knew that there was. Also, I have a license
for it. They wouldn't do that if there wasn't a compiler,
would they?

-- glen


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jeff Goodwin  
View profile  
 More options Feb 7, 4:11 pm
Newsgroups: comp.os.vms
From: "Jeff Goodwin" <jgood...@maine.rrr-r.com>
Date: Tue, 7 Feb 2012 16:11:35 -0500
Local: Tues, Feb 7 2012 4:11 pm
Subject: Re: Fortran?

"Ken Fairfield" <ken.fairfi...@gmail.com> wrote in message

news:29171678.138.1328647186076.JavaMail.geo-discussion-forums@pbg5...

> Was there ever VMS Fortran on IA64?

> Early on, there was talk of using the Intel
> compilers, but I'm reasonably certain that
> never happened.  But I'm also not certain
> that VMS Fortran got ported (more correctly,
> translated) to IA64...

>    -Ken

$ fortran/ver
HP Fortran V8.2-104939-50H96
$ write sys$output f$getsyi("arch_name")
IA64
$

-Jeff


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Ken Fairfield  
View profile  
 More options Feb 7, 4:22 pm
Newsgroups: comp.os.vms
From: Ken Fairfield <ken.fairfi...@gmail.com>
Date: Tue, 7 Feb 2012 13:22:23 -0800 (PST)
Local: Tues, Feb 7 2012 4:22 pm
Subject: Re: Fortran?

Oh, well, that's very cool then. :-)  And to Glen, yeah I'd
say having a PAK for it would be pretty good evidence.  

Just demonstrating my ignorance (or lack of knowlege?) here.
I've had no opportunity to get onto IA64.

OTOH, it's still true that this is the F95 version, right,
and that there was not going to be any further development
of Fortran for VMS?  No F2003, let alone F2008...

    -Ken


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phillip Helbig---undress to reply  
View profile  
 More options Feb 7, 6:00 pm
Newsgroups: comp.os.vms
From: hel...@astro.multiCLOTHESvax.de (Phillip Helbig---undress to reply)
Date: Tue, 7 Feb 2012 23:00:36 +0000 (UTC)
Local: Tues, Feb 7 2012 6:00 pm
Subject: Re: Fortran?
In article <jgrssa$pj...@speranza.aioe.org>, glen herrmannsfeldt

<g...@ugcs.caltech.edu> writes:
> Does anyone know where to get Fortran for a hobbyist IA64 system?

> (Is anyone here actually using Fortran on IA64?)

Does Fortran for IA64 exist?

Will a VMS compiler ever fully support a standard beyond F95?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Phillip Helbig---undress to reply  
View profile  
 More options Feb 7, 6:01 pm
Newsgroups: comp.os.vms
From: hel...@astro.multiCLOTHESvax.de (Phillip Helbig---undress to reply)
Date: Tue, 7 Feb 2012 23:01:56 +0000 (UTC)
Local: Tues, Feb 7 2012 6:01 pm
Subject: Re: Fortran?
In article
<1e4c4d63-5424-4512-bd87-e55137bce...@q12g2000yqg.googlegroups.com>,

abrsvc <dansabrservi...@yahoo.com> writes:
> Look for a DS10.  Quiet machine (more so than the DS10L) and quick if
> you get the 677Mhz version.  You can get them on Ebay for around $300-
> $400 if you keep watch.

Or for free if you are lucky.  :-)

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Arne Vajhøj  
View profile  
 More options Feb 7, 8:26 pm
Newsgroups: comp.os.vms
From: Arne Vajhøj <a...@vajhoej.dk>
Date: Tue, 07 Feb 2012 20:26:58 -0500
Local: Tues, Feb 7 2012 8:26 pm
Subject: Re: Fortran?
On 2/7/2012 6:00 PM, Phillip Helbig---undress to reply wrote:

> In article<jgrssa$pj...@speranza.aioe.org>, glen herrmannsfeldt
> <g...@ugcs.caltech.edu>  writes:

>> Does anyone know where to get Fortran for a hobbyist IA64 system?

>> (Is anyone here actually using Fortran on IA64?)

> Does Fortran for IA64 exist?

Someone posted that it does.

> Will a VMS compiler ever fully support a standard beyond F95?

I doubt it, but I am not an authoritative source.

Arne


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
abrsvc  
View profile  
 More options Feb 8, 7:28 am
Newsgroups: comp.os.vms
From: abrsvc <dansabrservi...@yahoo.com>
Date: Wed, 8 Feb 2012 04:28:03 -0800 (PST)
Local: Wed, Feb 8 2012 7:28 am
Subject: Re: Fortran?
On Feb 7, 8:26 pm, Arne Vajhøj <a...@vajhoej.dk> wrote:

Yes F90/95 exists for IA64.  I use it every day.  I am not aware of
any further development for it beyond bug fixes though.

Dan


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »