TRLC Platform Library  1.0.0
Header-only C++ library for compile-time platform detection and abstraction
SIMD

capability detection

// Use SIMD optimized algorithms
process_with_simd(data);
} else {
// Fallback to scalar implementation
process_scalar(data);
}
static bool hasSimdSupport()
Author
TRLC Platform Team
Version
1.0.0
Since
1.0.0
See also
endianness.hpp for byte order detection functions
features.hpp for runtime feature detection