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
{{ message }}
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.
Currently the SIMD feature requires the x86intrin crate and a compile time flag RUSTFLAGS="-C target-feature=+sse4.2". Since x86/x86_64 SIMD is already stabilized, we should no longer need this crate dependency, and more importantly, enable feature check at run time via the command: is_x86_feature_detected.
The text was updated successfully, but these errors were encountered:
Currently the SIMD feature requires the x86intrin crate and a compile
time flag `RUSTFLAGS="-C target-feature=+sse4.2"`, which is not
convenient. This replaces the x86intrin dependency with recently
stablized SIMD features, and also replaces the `cfg(target_feature)`
flag with `is_x86_feature_detected`, which dynamically determines
whether SSE 4.2 is supported or not.
Fixes#113.
Currently the SIMD feature requires the x86intrin crate and a compile
time flag `RUSTFLAGS="-C target-feature=+sse4.2"`, which is not
convenient. This replaces the x86intrin dependency with recently
stablized SIMD features, and also replaces the `cfg(target_feature)`
flag with `is_x86_feature_detected`, which dynamically determines
whether SSE 4.2 is supported or not.
Fixes#113.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently the SIMD feature requires the
x86intrin
crate and a compile time flagRUSTFLAGS="-C target-feature=+sse4.2"
. Since x86/x86_64 SIMD is already stabilized, we should no longer need this crate dependency, and more importantly, enable feature check at run time via the command:is_x86_feature_detected
.The text was updated successfully, but these errors were encountered: