aboutsummaryrefslogtreecommitdiff
path: root/pl/math/pairwise_hornerf.h
blob: 784750cde0b6de6d371587f66afb8a530bbfc6a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Helper macros for single-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_f32
#else
#define FMA fmaf
#endif

#include "pairwise_horner_wrap.h"