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