SLEEF stands for SIMD Library for Evaluating Elementary Functions. It implements vectorized versions of all C99 real floating point math functions. It can utilize SIMD instructions of modern processors. SLEEF is designed to fully utilize SIMD computation by reducing the use of conditional branches and scatter/gather memory access. Our benchmarks show that the performance of SLEEF is comparable to that of the best commercial library. Unlike vendor-tuned libraries, SLEEF is portable : it can be easily ported to other architectures by writing a helper file, which is a thin abstraction layer of SIMD intrinsics. SLEEF is also designed to work with various operating systems and compilers.
The library contains subroutines for all C99 real FP math functions in double precision and single precision. Different accuracy of the results can be chosen for a subset of the elementary functions; for this subset there are versions with up to 1 ulp error (which is the maximum error, not the average) and versions with a few ulp error. Obviously, less accurate versions are faster. For non-finite inputs and outputs, the library should return the same results as libm as specified in the C99 standard. The library is rigorously tested if the evaluation error is within the designed limit. The library is tested against high-precision evaluation using the libmpfr library. Especially, we carefully checked the error of the trigonometric functions when the arguments are close to an integral multiple of π/2.
SLEEF also includes subroutines for discrete Fourier transform(DFT). These subroutines are fully vectorized, heavily unrolled, and parallelized so that modern SIMD instructions and multiple cores can be utilized for efficient computation. It has an API similar to that of FFTW for easy migration, and distributed under BSL, which is a permissive open source license. The subroutines can utilize long vectors up to 2048 bits, and even longer vectors can be utilized by a small modification. The helper files for abstracting SIMD intrinsics are shared with SLEEF libm, and thus it is easy to port DFT subroutines to other architectures. Preliminary results of benchmark are now available.
This library currently supports several SIMD architectures :
In addition to the SIMD implementation, Pure C (scalar) version is provided. For x86 architecture, the library provides dispatchers that automatically choose the best subroutines for the computer the library is run. The supported combinations of the architecture, operating system and compiler are shown in Table 1.1.
Table 1.1: Environment support matrix | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
The supported compiler versions are as follows.
*1 FMA4 is not supported by Intel Compiler.
*2 SSE2 is required to run the scalar functions on 32-bit x86 architecture. x87 is not supported.
*3 NEON has only single precision support. The computation results are not in full accuracy since NEON is not IEEE 754-compliant.
*4 Clang-5.0 and later are supported.
*5 AVX functions are not supported for Cygwin, since AVX is not supported by Cygwin ABI.
All functions in the library are thread safe unless otherwise noted.
The Mobile Computing Lab at Division of Information Science of Nara Institute of Science and Technology participates through Naoki Shibata. |
|
As the leading IP company in semiconductors design, ARM participates through Francesco Petrogalli. |
|
As the leading company in developing a video game engine, Unity Technologies participates through Alexandre Mutel. |
|
SLEEF is distributed under Boost Software License Version 1.0.
Boost Software License is OSI-certified. See this page for more information about Boost Software License.