https://github.com/fschutt/simd-runtime-check-x64
Library for check SIMD features at runtime (originally forked from parched/runtime-target-feature-rs)
https://github.com/fschutt/simd-runtime-check-x64
Last synced: about 2 months ago
JSON representation
Library for check SIMD features at runtime (originally forked from parched/runtime-target-feature-rs)
- Host: GitHub
- URL: https://github.com/fschutt/simd-runtime-check-x64
- Owner: fschutt
- License: apache-2.0
- Created: 2018-01-03T04:10:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-03T04:14:09.000Z (over 8 years ago)
- Last Synced: 2026-01-04T03:27:15.902Z (6 months ago)
- Language: Rust
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## simd-runtime-check-x64
[Crates.io](https://crates.io/crates/simd-runtime-check-x64) | [Documentation](https://docs.rs/simd-runtime-check-x64)
This is a (nightly-only) library that provides an check at runtime to
see if various SIMD features are supported.
The code has been taken from `parched/runtime-target-feature-rs`, see
https://github.com/parched/runtime-target-feature-rs/blob/master/rt/src/x86.rs
I have only seperated it into a crate because the `runtime-target-feature-rs`
crate didn't provide me with enough control to actually choose between
SIMD and non-SIMD versions of functions at runtime.