about summary refs log tree commit diff
path: root/sysdeps/aarch64/fpu/exp10f_advsimd.c
Commit message (Collapse)AuthorAgeFilesLines
* aarch64: Add half-width versions of AdvSIMD f32 libmvec routinesJoe Ramsay2023-12-201-1/+3
| | | | | | | | | | | Compilers may emit calls to 'half-width' routines (two-lane single-precision variants). These have been added in the form of wrappers around the full-width versions, where the low half of the vector is simply duplicated. This will perform poorly when one lane triggers the special-case handler, as there will be a redundant call to the scalar version, however this is expected to be rare at Ofast. Reviewed-by: Szabolcs Nagy <szabolcs.nagy@arm.com>
* aarch64: Add vector implementations of exp10 routinesJoe Ramsay2023-10-231-0/+140
Double-precision routines either reuse the exp table (AdvSIMD) or use SVE FEXPA intruction.