Expand description
SIMD-optimized error correction codes
This module provides SIMD-accelerated implementations of common error correction codes including Hamming codes, Reed-Solomon codes, and CRC error detection.
Structs§
- CRC32
- CRC-32 checksum with SIMD optimization
- Hamming
Code74 - Hamming(7,4) code - encodes 4 data bits into 7 bits with error correction
- Simple
Reed Solomon - Simple Reed-Solomon-like code using finite field arithmetic This is a simplified implementation for educational purposes
Functions§
- calculate_
parity - Parity check for simple error detection
- check_
even_ parity - Even parity check
- check_
odd_ parity - Odd parity check
- xor_
checksum_ simd - SIMD-optimized XOR checksum for error detection