The following table lists available compiler directives.
Each general directive name is preceded by the prefix cDEC$; for example, cDEC$ ALIAS. Each OpenMP* Fortran directive name is preceded by the prefix c$OMP; for example, c$OMP ATOMIC. The c in either can be a c, C, *, or ! in fixed-form source code; only ! in free-form source code.
Name |
Description |
---|---|
Specifies an alternate external name to be used when referring to external subprograms. |
|
Specifies that an entity in memory is aligned. |
|
Applies attributes to variables and procedures. |
|
Generates warning messages for undeclared variables. |
|
Creates a variable whose existence can be tested during conditional compilation. |
|
Specifies distribution for a DO loop. |
|
Marks the beginning of an alternative conditional-compilation block to an IF directive construct. |
|
Marks the beginning of an alternative conditional-compilation block to an IF directive construct. |
|
Marks the end of a conditional-compilation block. |
|
Sets fixed-form line length. This directive has no effect on freeform code. |
|
Uses freeform format for source code. |
|
Specifies an identifier for an object module. |
|
Marks the beginning of a conditional-compilation block. |
|
Marks the beginning of a conditional-compilation block. |
|
Selects default integer size. |
|
Assists the compiler's dependence analysis of iterative DO loops. |
|
Specifies the loop count for a DO loop; this assists the optimizer. |
|
Ensures that a specific memory location is updated dynamically. |
|
Lets you provide cache hints on prefetches, loads, and stores. |
|
Sends a character string to the standard output device. |
|
(Default) Turns off warning messages for undeclared variables. |
|
(Default) Uses standard FORTRAN 77 code formatting column rules. |
|
Disables auto-parallelization for an immediately following DO loop. |
|
Disables optimizations. |
|
Disables a data prefetch from memory. |
|
(Default) Disables a previous STRICT directive. |
|
Disables software pipelining for a DO loop. |
|
Disables the unrolling of a DO loop. |
|
Disables loop unrolling and jamming. |
|
Disables vectorization of a DO loop. |
|
Specifies a library search path in an object file. |
|
Enables optimizations. |
|
Controls whether fields in records and data items in common blocks are naturally aligned or packed on arbitrary byte boundaries. |
|
Specifies the memory starting addresses of derived-type items. |
|
Enables auto-parallelization for an immediately following DO loop. |
|
Enables a data prefetch from memory. |
|
Modifies certain characteristics of a common block. |
|
Selects default real size. |
|
Disables Intel® Fortran features not in the language standard specified on the command line (Fortran 95 or Fortran 90). |
|
Enables software pipelining for a DO loop. |
|
Removes a symbolic variable name created with the DEFINE directive. |
|
Tells the compiler's optimizer how many times to unroll a DO loop. |
|
Enables loop unrolling and jamming. |
|
Specifies that all data is aligned in a DO loop. |
|
Enables vectorization of a DO loop. |
|
Directs the compiler to use non-temporal (that is, streaming) stores. |
|
Disables vectorization of a DO loop. |
|
Directs the compiler to use temporal (that is, non-streaming) stores. |
|
Specifies that no data is aligned in a DO loop. |
1i64 only
To use the following directives, you must specify compiler option -openmp (Linux and Mac OS X) or /Qopenmp (Windows).
Name |
Description |
---|---|
Specifies that a specific memory location is to be updated dynamically. |
|
Synchronizes all the threads in a team. |
|
Restricts access for a block of code to only one thread at a time. |
|
Specifies that the iterations of the immediately following DO loop must be executed in parallel. |
|
Specifies synchronization points where the implementation must have a consistent view of memory. |
|
Specifies a block of code to be executed by the master thread of the team. |
|
Specifies a block of code to be executed sequentially. |
|
Defines a parallel region. |
|
Defines a parallel region that contains a single DO directive. |
|
Defines a parallel region that contains SECTIONS directives. |
|
Defines a parallel region that contains a single WORKSHARE directive. |
|
Specifies a block of code to be divided among threads in a team (a worksharing area). |
|
Specifies a block of code to be executed by only one thread in a team. |
|
Defines a task region. |
|
Specifies a wait on the completion of child tasks generated since the beginning of the current task. |
|
Makes named common blocks private to a thread but global within the thread. |
|
Divides the work of executing a block of statements or constructs into separate units. |