- Order:
- Duration: 7:04
- Published: 07 Apr 2010
- Uploaded: 03 Aug 2011
- Author: macheads101
Name | Fortran |
---|---|
Logo | |
Caption | The Fortran Automatic Coding System for the IBM 704 (October 15, 1956), the first Programmer's Reference Manual for Fortran |
Paradigm | multi-paradigm: imperative (procedural), structured, object-oriented, generic |
Year | 1957 |
Designer | John Backus |
Developer | John Backus & IBM |
Latest release version | Fortran 2008 (ISO/IEC 1539-1:2010) |
Latest release date | 2010 |
Typing | strong, static, manifest |
Implementations | Absoft, Cray, GFortran, G95, IBM, Intel, Lahey/Fujitsu, Open Watcom, Pathscale, PGI, Silverfrost, Oracle, XL Fortran, Visual Fortran, others |
Influenced by | Speedcoding |
Influenced | ALGOL 58, BASIC, C, PL/I, PACT I, MUMPS, Ratfor |
File ext | .f , .for , .f90 , .f95 |
Fortran (previously FORTRAN; both blends derived from IBM Mathematical Formula Translating System) is a general-purpose, procedural, imperative programming language that is especially suited to numeric computation and scientific computing. Originally developed by IBM at their campus in south San Jose, California in the 1950s for scientific and engineering applications, Fortran came to dominate this area of programming early on and has been in continual use for over half a century in computationally intensive areas such as numerical weather prediction, finite element analysis, computational fluid dynamics, computational physics and computational chemistry. It is one of the most popular languages in the area of high-performance computing and is the language used for programs that benchmark and rank the world's fastest supercomputers.
Fortran encompasses a lineage of versions, each of which evolved to add extensions to the language while usually retaining compatibility with previous versions. Successive versions have added support for processing of character-based data (FORTRAN 77), array programming, modular programming and object-based programming (Fortran 90 / 95), and object-oriented and generic programming (Fortran 2003).
In late 1953, John W. Backus submitted a proposal to his superiors at IBM to develop a more practical alternative to assembly language for programming their IBM 704 mainframe computer. Backus' historic FORTRAN team consisted of programmers Richard Goldberg, Sheldon F. Best, Harlan Herrick, Peter Sheridan, Roy Nutt, Robert Nelson, Irving Ziller, Lois Haibt, and David Sayre.
A draft specification for The IBM Mathematical Formula Translating System was completed by mid-1954. The first manual for FORTRAN appeared in October 1956, with the first FORTRAN compiler delivered in April 1957. This was the first optimizing compiler, because customers were reluctant to use a high-level programming language unless its compiler could generate code whose performance was comparable to that of hand-coded assembly language.
While the community was skeptical that this new method could possibly out-perform hand-coding, it reduced the number of programming statements necessary to operate a machine by a factor of 20, and quickly gained acceptance. Said creator John Backus during a 1979 interview with Think, the IBM employee magazine, "Much of my work has come from being lazy. I didn't like writing programs, and so, when I was working on the IBM 701, writing programs for computing missile trajectories, I started work on a programming system to make it easier to write programs."
The language was widely adopted by scientists for writing numerically intensive programs, which encouraged compiler writers to produce compilers that could generate faster and more efficient code. The inclusion of a complex number data type in the language made Fortran especially suited to technical applications such as electrical engineering.
By 1960, versions of FORTRAN were available for the IBM 709, 650, 1620, and 7090 computers. Significantly, the increasing popularity of FORTRAN spurred competing computer manufacturers to provide FORTRAN compilers for their machines, so that by 1963 over 40 FORTRAN compilers existed. For these reasons, FORTRAN is considered to be the first widely used programming language supported across a variety of computer architectures.
The development of FORTRAN paralleled the early evolution of compiler technology, and many advances in the theory and design of compilers were specifically motivated by the need to generate efficient code for FORTRAN programs.
DIMENSION
and EQUIVALENCE
statementsIF
statement.
IF
statements for checking exceptions (ACCUMULATOR OVERFLOW
, QUOTIENT OVERFLOW
, and DIVIDE CHECK
); and IF
statements for manipulating sense switches and sense lightsGOTO
, computed GOTO
, ASSIGN
, and assigned GOTO
DO
loopsFORMAT
, READ
, READ INPUT TAPE
, WRITE
, WRITE OUTPUT TAPE
, PRINT
, and PUNCH
READ TAPE
, READ DRUM
, WRITE TAPE
, and WRITE DRUM
END FILE
, REWIND
, and BACKSPACE
PAUSE
, STOP
, and CONTINUE
FREQUENCY
statement (for providing optimization hints to the compiler).
Originally Fortran programs were written in a fixed column format. Columns 1 to 5 were the label field: a sequence of digits here was taken as a label for the purpose of a GOTO or a FORMAT reference in a WRITE or READ statement. A letter "C" in column 1 caused the entire card to be treated as a comment and ignored by the compiler. Column 6 was a continuation field: a non-blank character here caused the card to be taken as a continuation of the statement on the previous card. Columns 7 to 72 served as the statement field. Columns 73 to 80 were ignored, so they could be used for identification information. One such use was punching a sequence number which could be used to re-order cards if a stack of cards was dropped, though in practice this was reserved for stable, production programs. An IBM 519 could be used to copy a program deck and add sequence numbers. Some early compilers, e.g. the IBM 650's, had additional restrictions. Later compilers relaxed most fixed format restrictions.
Within the statement field, whitespace characters were generally ignored, allowing the programmer to omit space between tokens for brevity, or include spaces within identifiers for clarity (for example, AVG OF X
was a valid identifier, and equivalent to AVGOFX
).
SUBROUTINE
, FUNCTION
, and END
CALL
and RETURN
COMMON
Over the next few years, FORTRAN II would also add support for the DOUBLE PRECISION
and COMPLEX
data types.
READ INPUT TAPE
), while adding new features such as a LOGICAL
data type, logical Boolean expressions and the logical IF statement as an alternative to the arithmetic IF statement. FORTRAN IV was eventually released in 1962, first for the IBM 7030 ("Stretch") computer, followed by versions for the IBM 7090 and IBM 7094.
By 1965, Fortran IV was supposed to be the "standard" and in compliance with American Standards Association X3.4.3 FORTRAN Working Group.
SUBROUTINE
, FUNCTION
, and BLOCK DATA
program unitsINTEGER
, REAL
, DOUBLE PRECISION
, COMPLEX
, and LOGICAL
data typesCOMMON
, DIMENSION
, and EQUIVALENCE
statementsDATA
statement for specifying initial valuesEXTERNAL
(e.g., library) functionsGOTO
, assigned GOTO
, and computed GOTO
statementsIF
and arithmetic (three-way) IF
statementsDO
loopsREAD
, WRITE
, BACKSPACE
, REWIND
, and ENDFILE
statements for sequential I/OFORMAT
statementCALL
, RETURN
, PAUSE
, and STOP
statementsDATA
and FORMAT
statements, and as actual arguments to procedures
IF
and END IF
statements, with optional ELSE
and ELSE IF
clauses, to provide improved language support for structured programmingOPEN
, CLOSE
, and INQUIRE
statements for improved I/O capabilityIMPLICIT
statementCHARACTER
data type, with vastly expanded facilities for character input and output and processing of character-based dataPARAMETER
statement for specifying constantsSAVE
statement for persistent local variablesLGE, LGT, LLE, LLT
) for lexical comparison of strings, based upon the ASCII collating sequence. (These ASCII functions were demanded by the U.S. Department of Defense, in their conditional approval vote.)In this revision of the standard, a number of features were removed or altered in a manner that might invalidate previously standard-conforming programs. (Removal was the only allowable alternative to X3J3 at that time, since the concept of "deprecation" was not yet available for ANSI standards.) While most of the 24 items in the conflict list (see Appendix A2 of X3.9-1978) addressed loopholes or pathological cases permitted by the previous standard but rarely used, a small number of specific capabilities were deliberately removed, such as:
DIMENSION A(10,5)
:: Y= A(11,1)
An important practical extension to FORTRAN 77 was the release of MIL-STD-1753 in 1978. This specification, developed by the U.S. Department of Defense, standardized a number of features implemented by most FORTRAN 77 compilers but not included in the ANSI FORTRAN 77 standard. These features would eventually be incorporated into the Fortran 90 standard.
DO WHILE
and END DO
statementsINCLUDE
statementIMPLICIT NONE
variant of the IMPLICIT
statementThe IEEE 1003.9 POSIX Standard, released in 1991, provided a simple means for FORTRAN 77 programmers to issue POSIX system calls. Over 100 calls were defined in the document — allowing access to POSIX-compatible process control, signal handling, file system control, device control, procedure pointing, and stream I/O in a portable manner.
X(1:N)=R(1:N)*COS(A(1:N))
WHERE
statement for selective array assignmentRECURSIVE
proceduresALLOCATABLE
attribute and the ALLOCATE
and DEALLOCATE
statementsPOINTER
attribute, pointer assignment, and NULLIFY
statement to facilitate the creation and manipulation of dynamic data structuresEND DO
statement for loop termination, and EXIT
and CYCLE
statements for "breaking out" of normal DO
loop iterations in an orderly waySELECT
. . . CASE
construct for multi-way selection
A small set of features were identified as "obsolescent" and expected to be removed in a future standard.
FORALL
and nested WHERE
constructs to aid vectorizationPURE
and ELEMENTAL
proceduresALLOCATABLE
arrays are automatically deallocated when they go out of scope.
A number of intrinsic functions were extended (for example a dim
argument was added to the maxloc
intrinsic).
Several features noted in Fortran 90 to be deprecated were removed from Fortran 95:
DO
statements using REAL
and DOUBLE PRECISION
variablesEND IF
statement from outside its blockPAUSE
statementASSIGN
and assigned GOTO
statement, and assigned format specifiersH
edit descriptor.
An important supplement to Fortran 95 was the ISO technical report TR-15581: Enhanced Data Type Facilities, informally known as the Allocatable TR. This specification defined enhanced use of ALLOCATABLE
arrays, prior to the availability of fully Fortran 2003-compliant Fortran compilers. Such uses include ALLOCATABLE
arrays as derived type components, in procedure dummy argument lists, and as function return values. (ALLOCATABLE
arrays are preferable to POINTER
-based arrays because ALLOCATABLE
arrays are guaranteed by Fortran 95 to be deallocated automatically when they go out of scope, eliminating the possibility of memory leakage. In addition, aliasing is not an issue for optimization of array references, allowing compilers to generate faster code than in the case of pointers.)
Another important supplement to Fortran 95 was the ISO technical report TR-15580: Floating-point exception handling, informally known as the IEEE TR. This specification defined support for IEEE floating-point arithmetic and floating point exception handling.
According to the standards developers, "the optional parts describe self-contained features which have been requested by a substantial body of users and/or implementors, but which are not deemed to be of sufficient generality for them to be required in all standard-conforming Fortran compilers." Nevertheless, if a standard-conforming Fortran does provide such options, then they "must be provided in accordance with the description of those facilities in the appropriate Part of the Standard."
From that article, the major enhancements for this revision include:
VOLATILE
attribute, explicit type specification in array constructors and allocate statements, pointer enhancements, extended initialization expressions, and enhanced intrinsic procedures.FLUSH
statement, regularization of keywords, and access to error messages.An important supplement to Fortran 2003 was the ISO technical report TR-19767: Enhanced module facilities in Fortran. This report provided submodules, which make Fortran modules more similar to Modula-2 modules. They are similar to Ada private child subunits. This allows the specification and implementation of a module to be expressed in separate program units, which improves packaging of large libraries, allows preservation of trade secrets while publishing definitive interfaces, and prevents compilation cascades.
The Final Draft international Standard (FDIS) is available as document N1830.
Incompatible extensions were not the only portability problem. For numerical calculations, it is important to take account of the characteristics of the arithmetic. This was addressed by Fox et al. in the context of the 1966 standard by the PORT library. The ideas therein became widely used, and were eventually incorporated into the 1990 standard by way of intrinsic inquiry functions. The widespread (now almost universal) adoption of the IEEE 754 standard for binary floating-point arithmetic has essentially removed this problem.
Access to the computing environment (e.g. the program's command line, environment variables, textual explanation of error conditions) remained a problem until it was addressed by the 2003 standard.
Large collections of "library" software that could be described as being loosely related to engineering and scientific calculations, such as graphics libraries, have been written in C, and therefore access to them presented a portability problem. This has been addressed by incorporation of C interoperability into the 2003 standard.
It is now possible (and relatively easy) to write an entirely portable program in Fortran, even without recourse to a preprocessor.
Univac also offered a compiler for the 1100 series known as Fortran V. A spinoff of Univac Fortran V was Athena Fortran.
Object-Oriented Fortran was an object-oriented extension of Fortran, in which data items can be grouped into objects, which can be instantiated and executed in parallel. It was available for Sun, Iris, iPSC, and nCUBE, but is no longer supported.
Such machine-specific extensions have either disappeared over time or have had elements incorporated into the main standards; the major remaining extension is OpenMP, which is a cross-platform extension for shared memory programming. One new extension, Co-array Fortran, is intended to support parallel programming.
The FORTRAN system was designed for a more complex machine than the 650, and consequently some of the 32 statements found in the FORTRAN Programmer's Reference Manual are not acceptable to the FOR TRANSIT system. In addition, certain restrictions to the FORTRAN language have been added. However, none of these restrictions make a source program written for FOR TRANSIT incompatible with the FORTRAN system for the 704.
The permissible statements were: : Arithmetic assignment statements, e.g. a = b : GO to n : GO TO (n1, n2, ..., nm), i : IF (a) n1, n2, n3 : PAUSE : STOP : DO n i = m1, m2 : CONTINUE : END : READ n, list : PUNCH n, list : DIMENSION V, V, V, ... : EQUIVALENCE (a,b,c), (d,c), ... Up to ten subroutines could be used in one program.
FOR TRANSIT statements were limited to columns 7 thru 56, only. Punched cards were used for input and output on the IBM 650. Three passes were required to translate source code to the "IT" language, then to compile the IT statements into SOAP assembly language, and finally to produce the object program, which could then be loaded into the machine to run the program (using punched cards for data input, and outputting results onto punched cards.)
Two versions existed for the 650s with a 2000 word memory drum: FOR TRANSIT I (S) and FOR TRANSIT II, the latter for machines equipped with indexing registers and automatic floating point decimal (bi-quinary) arithmetic. Appendix A of the manual included wiring diagrams for the IBM 533 control panel.
LRLTRAN was developed at the Lawrence Radiation Laboratory to provide support for vector arithmetic and dynamic storage, among other extensions to support systems programming. The distribution included the LTSS operating system.
The Fortran-95 Standard includes an optional Part 3 which defines an optional conditional compilation capability. This capability is often referred to as "CoCo".
Many Fortran compilers have integrated subsets of the C preprocessor into their systems.
SIMSCRIPT is an application specific Fortran preprocessor for modeling and simulating large discrete systems.
The F programming language was designed to be a clean subset of Fortran 95 that attempted to remove the redundant, unstructured, and deprecated features of Fortran, such as the EQUIVALENCE
statement. F retains the array features added in Fortran 90, and removes control statements that were obsoleted by structured programming constructs added to both Fortran 77 and Fortran 90. F is described by its creators as "a compiled, structured, array programming language especially well suited to education and scientific computing."
DO
loops and IF
/THEN
statements in manipulating the array; mathematical operations are applied to the array as a whole. Also apparent is the use of descriptive variable names and general code formatting that conform with contemporary programming style. This example computes an average over data entered interactively.
! Read in some numbers and take the average ! As written, if there are no data points, an average of zero is returned ! While this may not be desired behavior, it keeps this example simple
implicit none
real, dimension(:), allocatable :: points integer :: number_of_points real :: average_points=0., positive_average=0., negative_average=0.
write (*,*) "Input number of points to average:" read (*,*) number_of_points
allocate (points(number_of_points))
write (*,*) "Enter the points to average:" read (*,*) points
! Take the average by summing points and dividing by number_of_points if (number_of_points > 0) average_points = sum(points) / number_of_points
! Now form average over positive and negative points only if (count(points > 0.) > 0) then positive_average = sum(points, points > 0.) / count(points > 0.) end if
if (count(points < 0.) > 0) then negative_average = sum(points, points < 0.) / count(points < 0.) end if
deallocate (points)
! Print result to terminal write (*,'(a,g12.4)') 'Average = ', average_points write (*,'(a,g12.4)') 'Average of positive points = ', positive_average write (*,'(a,g12.4)') 'Average of negative points = ', negative_average
end program average
GO TO
statement as before. (Troublesome FORMAT
statements would also be eliminated.) It was noted that this "might invalidate some existing programs" but that most of these "probably were non-conforming, anyway".
During the standards committee battle over whether the "minimum trip count" for the FORTRAN 77 "DO" statement should be zero (allowing no execution of the block) or one (the "plunge-ahead" DO), another facetious alternative was proposed (by Loren Meissner) to have the minimum trip be two—since there is no need for a loop if it is only executed once.
;"Core" language standards Informally known as FORTRAN 66. Also known as ISO 1539-1980, informally known as FORTRAN 77. Informally known as Fortran 90. Informally known as Fortran 95. There are a further two parts to this standard. Part 1 has been formally adopted by ANSI. Informally known as Fortran 2003. Informally known as Fortran 2008.
;Related standards
;Textbooks
Category:Array programming languages Category:Procedural programming languages Category:Numerical programming languages Category:Object-oriented programming languages Category:Parallel computing Category:Fortran programming language family Category:Computer standards Category:Unix programming tools Category:Statically typed programming languages Category:Programming languages created in the 1950s
This text is licensed under the Creative Commons CC-BY-SA License. This text was originally published on Wikipedia and was developed by the Wikipedia community.