1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-11 12:10:50 +03:00
Files
glibc/sysdeps/x86_64/fpu/multiarch/s_exp2m1f-fma.c
Adhemerval Zanella 6d477b8de8 x86_64: Add exp2m1f with FMA
The CORE-MATH exp2m1f implementation showed slight worse latency
when using x86_64 baseline ABI.  This patch adds a ifunc variant
with similar performance for x86_64-v3.

Reviewed-by: Noah Goldstein <goldstein.w.n@gmail.com>
Reviewed-by: DJ Delorie <dj@redhat.com>
2024-11-01 11:27:40 -03:00

5 lines
135 B
C

#define __exp2m1f __exp2m1f_fma
#define SECTION __attribute__ ((section (".text.fma")))
#include <sysdeps/ieee754/flt-32/s_exp2m1f.c>