• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Helper macros for double-precision Horner polynomial evaluation.
3  *
4  * Copyright (c) 2022-2023, Arm Limited.
5  * SPDX-License-Identifier: MIT OR Apache-2.0 WITH LLVM-exception
6  */
7 
8 #if V_SUPPORTED
9 #define FMA v_fma_f32
10 #else
11 #define FMA fmaf
12 #endif
13 
14 #include "horner_wrap.h"
15