blob: 7b7b88a4355d6205ed3095ed4336289e95cbfdbb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <math.h>
#if 0 /* if fmaf is generally as fast or faster than multiply and add */
#define FP_FAST_FMAF
#else
#undef FP_FAST_FMAF
#endif
/*
STDC(199901)
LINK(m)
*/
|