forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jethro Beekman
committed
Sep 15, 2020
1 parent
4c1966f
commit 0122e08
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule stdarch
updated
22 files
+1,418 −0 | crates/core_arch/avx512f.md | |
+0 −2 | crates/core_arch/src/aarch64/mod.rs | |
+499 −2 | crates/core_arch/src/aarch64/neon/mod.rs | |
+2 −12 | crates/core_arch/src/arm/mod.rs | |
+317 −23 | crates/core_arch/src/arm/neon/mod.rs | |
+0 −1 | crates/core_arch/src/lib.rs | |
+583 −95 | crates/core_arch/src/simd.rs | |
+1 −1 | crates/core_arch/src/x86/avx.rs | |
+21 −11 | crates/core_arch/src/x86/avx2.rs | |
+13,971 −2,374 | crates/core_arch/src/x86/avx512f.rs | |
+517 −0 | crates/core_arch/src/x86/macros.rs | |
+0 −786 | crates/core_arch/src/x86/mmx.rs | |
+8 −90 | crates/core_arch/src/x86/mod.rs | |
+0 −876 | crates/core_arch/src/x86/sse.rs | |
+0 −202 | crates/core_arch/src/x86/sse2.rs | |
+0 −345 | crates/core_arch/src/x86/ssse3.rs | |
+0 −9 | crates/core_arch/src/x86/test.rs | |
+3,050 −0 | crates/core_arch/src/x86_64/avx512f.rs | |
+0 −12 | crates/simd-test-macro/src/lib.rs | |
+0 −1 | crates/stdarch-test/src/lib.rs | |
+2 −0 | crates/stdarch-verify/src/lib.rs | |
+6 −2 | crates/stdarch-verify/tests/x86-intel.rs |