/**
* @brief Hardware-accelerated Min-Hash fingerprinting for string collections - CPU backends hub.
* @file include/stringzillas/fingerprints.hpp
* @author Ash Vardanian
*
* This is a thin hub aggregating the per-backend fingerprint headers. The ISA-agnostic rolling-hash
* template core and the serial backend aliases live in `fingerprints/serial.hpp`; CPU SIMD
* specializations live in their own per-ISA files. GPU backends are aggregated by `fingerprints.cuh`.
*
* See `fingerprints/serial.hpp` for the detailed description of the rolling-hash and Min-Hashing math.
*
* @sa fingerprints/serial.hpp
* @sa fingerprints/haswell.hpp
* @sa fingerprints/skylake.hpp
* @sa fingerprints/neon.hpp
*/
// STRINGZILLAS_FINGERPRINTS_HPP_