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