Intel® Fortran Compiler 17.0 Developer Guide and Reference
Specifies the default KIND for real and complex declarations, constants, functions, and intrinsics.
Linux and macOS: | -real-size size |
Windows: | /real-size:size |
size |
Is the size for real and complex declarations, constants, functions, and intrinsics. Possible values are: 32, 64, or 128. |
real-size 32 |
Default real and complex declarations, constants, functions, and intrinsics are 4 bytes long (REAL(KIND=4) and COMPLEX(KIND=4)). |
This option specifies the default size (in bits) for real and complex declarations, constants, functions, and intrinsics.
Option |
Description |
---|---|
real-size 32 |
Makes default real and complex declarations, constants, functions, and intrinsics 4 bytes long. REAL declarations are treated as single precision REAL (REAL(KIND=4)) and COMPLEX declarations are treated as COMPLEX (COMPLEX(KIND=4)). Real and complex constants of unspecified KIND are evaluated in single precision (KIND=4). |
real-size 64 |
Makes default real and complex declarations, constants, functions, and intrinsics 8 bytes long. REAL declarations are treated as DOUBLE PRECISION (REAL(KIND=8)) and COMPLEX declarations are treated as DOUBLE COMPLEX (COMPLEX(KIND=8)). Real and complex constants of unspecified KIND are evaluated in double precision (KIND=8). |
real-size 128 |
Makes default real and complex declarations, constants, functions, and intrinsics 16 bytes long. REAL declarations are treated as extended precision REAL (REAL(KIND=16)); COMPLEX and DOUBLE COMPLEX declarations are treated as extended precision COMPLEX (COMPLEX(KIND=16)). Real and complex constants of unspecified KIND are evaluated in extended precision (KIND=16). |
These compiler options can affect the result type of intrinsic procedures, such as CMPLX, FLOAT, REAL, SNGL, and AIMAG, which normally produce single-precision REAL or COMPLEX results. To prevent this effect, you must explicitly declare the kind type for arguments of such intrinsic procedures.
For example, if real-size 64 is specified, the CMPLX intrinsic will produce a result of type DOUBLE COMPLEX (COMPLEX(KIND=8)). To prevent this, you must explicitly declare any real argument to be REAL(KIND=4), and any complex argument to be COMPLEX(KIND=4).
Visual Studio: Data > Default Real KIND
Eclipse: None
Xcode: Data > Default Real KIND
real-size 64 |
Linux and OS X: -r8, -autodouble Windows: /4R8, /Qautodouble |
real-size 128 |
Linux and OS X: -r16 Windows: /4R16 |