17 lines
305 B
C
17 lines
305 B
C
|
|
/*
|
||
|
|
* Helper macros for double-precision Estrin polynomial evaluation.
|
||
|
|
*
|
||
|
|
* Copyright (c) 2022-2023, Arm Limited.
|
||
|
|
* SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "math_config.h"
|
||
|
|
|
||
|
|
#if V_SUPPORTED
|
||
|
|
#define FMA v_fma_f64
|
||
|
|
#else
|
||
|
|
#define FMA fma
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "estrin_wrap.h"
|