floats 0.2.0

f16 and f128 floating point types for compatibility with future Rust versions
Documentation
1
2
3
4
5
6
7
8
#![cfg(all(feature = "asm", target_arch = "x86_64"))]
#![cfg(feature = "casting")]

#[cfg(target_feature = "avx512fp16")]
mod avx;

#[cfg(all(not(target_feature = "avx512fp16"), target_feature = "f16c"))]
mod f16c;