1Description: 2fma() function: fused multiply-add. 3 4Files: 5lib/fma.c 6lib/float+.h 7m4/fma.m4 8m4/fegetround.m4 9m4/mathfunc.m4 10 11Depends-on: 12math 13float [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 14stdbool [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 15verify [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 16isfinite [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 17integer_length [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 18frexp [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 19ldexp [test $HAVE_FMA = 0 || test $REPLACE_FMA = 1] 20 21configure.ac: 22gl_FUNC_FMA 23if test $HAVE_FMA = 0 || test $REPLACE_FMA = 1; then 24 AC_LIBOBJ([fma]) 25 gl_PREREQ_FMA 26fi 27gl_MATH_MODULE_INDICATOR([fma]) 28 29Makefile.am: 30 31Include: 32<math.h> 33 34Link: 35$(FMA_LIBM) 36 37License: 38LGPL 39 40Maintainer: 41Bruno Haible 42