slackbuilds/academic/xsimd
Jeremy Hansen cd8ca67a84
academic/xsimd: New maintainer
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2023-06-15 21:39:49 +07:00
..
README academic/xsimd: Added (C++ wrappers for SIMD intrinsics) 2022-04-09 15:45:55 +07:00
slack-desc academic/xsimd: Added (C++ wrappers for SIMD intrinsics) 2022-04-09 15:45:55 +07:00
xsimd.SlackBuild academic/xsimd: Update maintainer's email 2023-06-04 23:13:23 +07:00
xsimd.info academic/xsimd: New maintainer 2023-06-15 21:39:49 +07:00

README

SIMD (Single Instruction, Multiple Data) is a feature of microprocessors
that has been available for many years. SIMD instructions perform a
single operation on a batch of values at once, and thus provide a way
to significantly accelerate code execution. However, these instructions
differ between microprocessor vendors and compilers.

xsimd provides a unified means for using these features for library
authors. Namely, it enables manipulation of batches of numbers with
the same arithmetic operators as for single values. It also provides
accelerated implementation of common mathematical functions operating
on batches.