Intel® Fortran Compiler 18.0 Developer Guide and Reference

IEEE_SUPPORT_SQRT

Inquiry Module Intrinsic Function (Generic): Returns whether the processor supports IEEE SQRT (square root).

Module

USE, INTRINSIC :: IEEE_ARITHMETIC

result = IEEE_SUPPORT_SQRT ([x])

x

(Input; optional) Must be of type REAL; it can be scalar or array valued.

Results

The result is a scalar of type default logical. If x is omitted, the result has the value true if the processor implements SQRT in accord with the IEEE standard for all real values; otherwise, false.

If x is specified, the result has the value true if the processor implements SQRT in accord with the IEEE standard for real variables of the same kind type parameter as x; otherwise, false.

Example

IEEE_SUPPORT_SQRT ( ) has the value true if IEEE SQRT is supported for all real types.

See Also