about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/tests
AgeCommit message (Collapse)AuthorLines
2020-11-02Fix some clippy lints (#937)Joshua Nelson-2/+2
2020-05-29Implementation for Aarch64 TME intrinsicsMahmut Bulut-0/+1
2020-03-29Add crypto target feature detection to arm32 (#833)Makoto Kato-0/+1
2020-01-26Add Icelake avx512 features (#838)Luca Barbato-0/+34
* Add Icelake avx512 features As documented in https://software.intel.com/sites/default/files/managed/c5/15//architecture-instruction-set-extensions-programming-reference.pdf * Sort the avx512 feature checks by bit * Unbreak macos Force nightly.
2019-12-02Add CRC32 detection to arm32Makoto Kato-0/+1
armv8 has 32-bit mode, but it can use crc32 instruction sets even if 32-bit.
2019-09-18Drop the features test for nowLuca Barbato-13/+0
2019-09-18Unbreak non-x86Luca Barbato-0/+1
2019-09-17Move the tests away from the codeLuca Barbato-0/+153
2019-09-16Add std_detect::detect::features() -> impl Iterator<Item=(&'static str, ↵gnzlbg-12/+19
bool)> API
2019-07-09Update repo namegnzlbg-2/+0
2019-05-09Add runtime feature detection for F16Cgnzlbg-0/+1
2019-04-17Fix clippy issuesgnzlbg-8/+2
2019-02-04Add detect macros should support trailing commas (Fix #443)Juan Aguilar Santillana-0/+55
2019-01-22Refactor stdsimdgnzlbg-0/+105
This commit: * renames `coresimd` to `core_arch` and `stdsimd` to `std_detect` * `std_detect` does no longer depend on `core_arch` - it is a freestanding `no_std` library that only depends on `core` - it is renamed to `std_detect` * moves the top-level coresimd and stdsimd directories into the appropriate crates/... directories - this simplifies creating crate.io releases of these crates * moves the top-level `coresimd` and `stdsimd` sub-directories into their corresponding crates in `crates/{core_arch, std_detect}`.