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