Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29145 Discussions

does intel fortran compiler 9.1 support triple precision

vtuneuser
Beginner
543 Views

Is the data type of extended-precision real "REAL*16"implemented as the triple precision in the Intel fortran compiler?

Thanks.

0 Kudos
1 Reply
TimP
Honored Contributor III
543 Views
real*16 on Pentium and Xeon families takes advantage of x87 extended precision, but uses software arithmetic functions to implement 113-bit precision. Thus, it is significantly more accurate and slower than 64-bit x87 precision would be.
real*16 on Itanium uses combinations of hardware instructions including those which implement 64-bit extended precision, so it is not so costly as on Xeon, but 113-bit precision still takes longer than 64-bit would do.
0 Kudos
Reply