git.postgresql.org Git - postgresql.git/commit

git projects / postgresql.git / commit
? search:
summary | shortlog | log | commit | commitdiff | tree
(parent: f56a01e) | patch
Use __attribute__((target(...))) for AVX-512 support.
Thu, 7 Nov 2024 19:58:43 +0000 (13:58 -0600)
Thu, 7 Nov 2024 19:58:43 +0000 (13:58 -0600)
commit f78667bd910ed5af90d927bbef30b181bc798ef7
Use __attribute__((target(...))) for AVX-512 support.

Presently, we check for compiler support for the required
intrinsics both with and without extra compiler flags (e.g.,
-mxsave), and then depending on the results of those checks, we
pick which files to compile with which flags. This is tedious and
complicated, and it results in unsustainable coding patterns such
as separate files for each portion of code may need to be built
with different compiler flags.

This commit introduces support for __attribute__((target(...))) and
uses it for the AVX-512 code. This simplifies both the
configure-time checks and the build scripts, and it allows us to
place the functions that use the intrinsics in files that we
otherwise do not want to build with special CPU instructions. We
are careful to avoid using __attribute__((target(...))) on
compilers that do not understand it, but we still perform the
configure-time checks in case the compiler allows using the
intrinsics without it (e.g., MSVC).

A similar change could likely be made for some of the CRC-32C code,
but that is left as a future exercise.

Suggested-by: Andres Freund
Reviewed-by: Raghuveer Devulapalli, Andres Freund
Discussion: https://postgr.es/m/20240731205254.vfpap7uxwmebqeaf%40awork3.anarazel.de
config/c-compiler.m4 diff | blob | blame | history
configure diff | blob | blame | history
configure.ac diff | blob | blame | history
meson.build diff | blob | blame | history
src/Makefile.global.in diff | blob | blame | history
src/include/c.h diff | blob | blame | history
src/makefiles/meson.build diff | blob | blame | history
src/port/Makefile diff | blob | blame | history
src/port/meson.build diff | blob | blame | history
src/port/pg_popcount_avx512.c diff | blob | blame | history
src/port/pg_popcount_avx512_choose.c [deleted file] blob | blame | history
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /