freebsd-src/contrib/arm-optimized-routines/pl/math/pairwise_horner.h
2023-06-09 17:56:02 +01:00

15 lines
297 B
C

/*
* Helper macros for double-precision pairwise Horner polynomial evaluation.
*
* Copyright (c) 2022-2023, Arm Limited.
* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
*/
#if V_SUPPORTED
#define FMA v_fma_f64
#else
#define FMA fma
#endif
#include "pairwise_horner_wrap.h"