This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository glibc.
from a743fd95bb Use Linux 6.9 in build-many-glibcs.py new 157f89fa3d aarch64/fpu: Add vector variants of hypot new 75207bde68 aarch64/fpu: Add vector variants of cbrt
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: sysdeps/aarch64/fpu/Makefile | 2 + sysdeps/aarch64/fpu/Versions | 10 ++ sysdeps/aarch64/fpu/advsimd_f32_protos.h | 2 + sysdeps/aarch64/fpu/bits/math-vector.h | 16 +++ sysdeps/aarch64/fpu/cbrt_advsimd.c | 121 +++++++++++++++++++ sysdeps/aarch64/fpu/cbrt_sve.c | 128 +++++++++++++++++++++ sysdeps/aarch64/fpu/cbrtf_advsimd.c | 123 ++++++++++++++++++++ sysdeps/aarch64/fpu/cbrtf_sve.c | 122 ++++++++++++++++++++ sysdeps/aarch64/fpu/hypot_advsimd.c | 97 ++++++++++++++++ sysdeps/aarch64/fpu/hypot_sve.c | 54 +++++++++ sysdeps/aarch64/fpu/hypotf_advsimd.c | 98 ++++++++++++++++ sysdeps/aarch64/fpu/hypotf_sve.c | 48 ++++++++ sysdeps/aarch64/fpu/test-double-advsimd-wrappers.c | 2 + sysdeps/aarch64/fpu/test-double-sve-wrappers.c | 2 + sysdeps/aarch64/fpu/test-float-advsimd-wrappers.c | 2 + sysdeps/aarch64/fpu/test-float-sve-wrappers.c | 2 + sysdeps/aarch64/libm-test-ulps | 16 +++ sysdeps/unix/sysv/linux/aarch64/libmvec.abilist | 10 ++ 18 files changed, 855 insertions(+) create mode 100644 sysdeps/aarch64/fpu/cbrt_advsimd.c create mode 100644 sysdeps/aarch64/fpu/cbrt_sve.c create mode 100644 sysdeps/aarch64/fpu/cbrtf_advsimd.c create mode 100644 sysdeps/aarch64/fpu/cbrtf_sve.c create mode 100644 sysdeps/aarch64/fpu/hypot_advsimd.c create mode 100644 sysdeps/aarch64/fpu/hypot_sve.c create mode 100644 sysdeps/aarch64/fpu/hypotf_advsimd.c create mode 100644 sysdeps/aarch64/fpu/hypotf_sve.c