You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cksum): add x86 (32-bit) CPU feature detection support
The cpufeatures dependency was included for x86 architecture in Cargo.toml,
but the hardware.rs file only had CPU feature detection functions for x86_64.
This caused the x86 Android emulator test to fail because the CPU feature
detection functions were missing.
Added CPU feature detection functions for x86 (32-bit) architecture:
- has_avx512() for x86
- has_avx2() for x86
- has_pclmul() for x86
Updated cfg attributes to include both x86_64 and x86 architectures.
Updated test to cover both x86 and x86_64 architectures.
0 commit comments