4 releases
0.1.3 | Oct 7, 2024 |
---|---|
0.1.2 | Jul 14, 2023 |
0.1.1 | Jun 11, 2023 |
0.1.0 | Jun 11, 2023 |
#165 in Audio
814 downloads per month
Used in 8 crates
(4 directly)
7KB
111 lines
no_denormals
Temporarily turn off floating point denormals.
Internally, this uses a RAII-style guard to manage the state of certain processor flags.
On x86
and x86_64
, this sets the flush-to-zero and denormals-are-zero flags in the MXCSR register.
On aarch64
this sets the flush-to-zero flag in the FPCR register.
In all cases, the register will be reset to its initial state when the guard is dropped.
Note that according to the Rust docs "modifying the masking flags, rounding mode, or denormals-are-zero mode flags leads to immediate Undefined Behavior: Rust assumes that these are always in their default state and will optimize accordingly." So use this at your own risk.
Usage
use no_denormals::no_denormals;
no_denormals(|| {
// your DSP code here.
});