aboutsummaryrefslogtreecommitdiff
path: root/pl/math/estrin.h
blob: f967fb0475b0513dea93bde97c6e6cb5d3cb7cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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"