Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | H | 25-Apr-2025 | - | 257 | 206 | |
ci/ | H | 25-Apr-2025 | - | 611 | 451 | |
crates/ | H | 25-Apr-2025 | - | 503,833 | 428,378 | |
examples/ | H | 25-Apr-2025 | - | 1,756 | 1,341 | |
intrinsics_data/ | H | 25-Apr-2025 | - | 106,271 | 106,270 | |
.cirrus.yml | H A D | 25-Apr-2025 | 328 | 13 | 12 | |
CONTRIBUTING.md | H A D | 25-Apr-2025 | 4.9 KiB | 94 | 76 | |
Cargo.toml | H A D | 25-Apr-2025 | 390 | 25 | 22 | |
LICENSE-APACHE | H A D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | H A D | 25-Apr-2025 | 1 KiB | 26 | 22 | |
README.md | H A D | 25-Apr-2025 | 616 | 19 | 11 | |
rustfmt.toml | HD | 25-Apr-2025 | 0 | |||
triagebot.toml | H A D | 25-Apr-2025 | 1.4 KiB | 53 | 42 | |
vendor.yml | H A D | 25-Apr-2025 | 82 | 3 | 2 |
README.md
1stdarch - Rust's standard library SIMD components 2======= 3 4[](https://github.com/rust-lang/stdarch/actions) 5 6 7# Crates 8 9This repository contains two main crates: 10 11* [`core_arch`](crates/core_arch/README.md) implements `core::arch` - Rust's 12 core library architecture-specific intrinsics, and 13 14* [`std_detect`](crates/std_detect/README.md) implements `std::detect` - Rust's 15 standard library run-time CPU feature detection. 16 17The `std::simd` component now lives in the 18[`packed_simd_2`](https://github.com/rust-lang/packed_simd) crate. 19