aboutsummaryrefslogtreecommitdiff
path: root/pl/math/horner.h
blob: f92ab675211048ca94e39b0af8721ceef945f169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Helper macros for single-precision 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 "horner_wrap.h"