commit | 488c28a204712823f619fefba3e3c774fdb1ad0a | [log] [tgz] |
---|---|---|
author | gnzlbg <gnzlbg@users.noreply.github.com> | Tue Jan 09 16:23:45 2018 +0100 |
committer | Alex Crichton <alex@alexcrichton.com> | Tue Jan 09 09:23:45 2018 -0600 |
tree | fc591b00577e5d6c86381257f0250ed51d76619f | |
parent | cb136a40153f26eb0a0829184803b4cf4e4dab36 [diff] |
More run-time detection improvements (#242) * [core/runtime] use getauxval on non-x86 platforms * test coresimd::auxv against auxv crate * add test files from auxv crate * [arm] use simd_test macro * formatting * missing docs * improve docs * reading /proc/self/auxv succeeds only if reading all fields succeeds * remove cc-crate build dependency * getauxval succeeds only if hwcap/hwcap2 are non-zero * fix formatting * move getauxval to stdsimd * delete getauxval-wrapper.c * remove auxv crate dev-dependency from coresimd
Experimental support for SIMD destined to eventually become part of Rust's standard library
This is a work in progress.
The main goal is to expose APIs defined by vendors with the least amount of abstraction possible. On x86, for example, the API should correspond to that provided by emmintrin.h
.
stdsimd
is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0), with portions covered by various BSD-like licenses.
See LICENSE-APACHE, and LICENSE-MIT for details.