]> git.lizzy.rs Git - rust.git/commit
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
authorJubilee Young <workingjubilee@gmail.com>
Sat, 13 Nov 2021 00:58:25 +0000 (16:58 -0800)
committerJubilee Young <workingjubilee@gmail.com>
Sat, 13 Nov 2021 00:58:25 +0000 (16:58 -0800)
commitfdee059c9050d8135dc98db8c90b225c9e6b085a
treecece804455d33511dd6913872e2f7293ba1dc380
parentefd0483949496b067cd5f7569d1b28cd3d5d3c72
parent1ce1c645cf27c4acdefe6ec8a11d1f0491954a99
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'

git-subtree-dir: library/portable-simd
git-subtree-mainline: efd0483949496b067cd5f7569d1b28cd3d5d3c72
git-subtree-split: 1ce1c645cf27c4acdefe6ec8a11d1f0491954a99
78 files changed:
library/portable-simd/.github/ISSUE_TEMPLATE/blank_issue.md
library/portable-simd/.github/ISSUE_TEMPLATE/bug_report.md
library/portable-simd/.github/ISSUE_TEMPLATE/config.yml
library/portable-simd/.github/ISSUE_TEMPLATE/feature_request.md
library/portable-simd/.github/PULL_REQUEST_TEMPLATE.md
library/portable-simd/.github/workflows/ci.yml
library/portable-simd/.github/workflows/doc.yml
library/portable-simd/.gitignore
library/portable-simd/CONTRIBUTING.md
library/portable-simd/Cargo.toml
library/portable-simd/LICENSE-APACHE
library/portable-simd/LICENSE-MIT
library/portable-simd/README.md
library/portable-simd/beginners-guide.md
library/portable-simd/crates/core_simd/Cargo.toml
library/portable-simd/crates/core_simd/LICENSE-APACHE
library/portable-simd/crates/core_simd/LICENSE-MIT
library/portable-simd/crates/core_simd/examples/matrix_inversion.rs
library/portable-simd/crates/core_simd/examples/nbody.rs
library/portable-simd/crates/core_simd/src/comparisons.rs
library/portable-simd/crates/core_simd/src/core_simd_docs.md
library/portable-simd/crates/core_simd/src/fmt.rs
library/portable-simd/crates/core_simd/src/intrinsics.rs
library/portable-simd/crates/core_simd/src/iter.rs
library/portable-simd/crates/core_simd/src/lane_count.rs
library/portable-simd/crates/core_simd/src/lib.rs
library/portable-simd/crates/core_simd/src/masks.rs
library/portable-simd/crates/core_simd/src/masks/bitmask.rs
library/portable-simd/crates/core_simd/src/masks/full_masks.rs
library/portable-simd/crates/core_simd/src/math.rs
library/portable-simd/crates/core_simd/src/mod.rs
library/portable-simd/crates/core_simd/src/ops.rs
library/portable-simd/crates/core_simd/src/reduction.rs
library/portable-simd/crates/core_simd/src/round.rs
library/portable-simd/crates/core_simd/src/select.rs
library/portable-simd/crates/core_simd/src/swizzle.rs
library/portable-simd/crates/core_simd/src/to_bytes.rs
library/portable-simd/crates/core_simd/src/vector.rs
library/portable-simd/crates/core_simd/src/vector/float.rs
library/portable-simd/crates/core_simd/src/vector/int.rs
library/portable-simd/crates/core_simd/src/vector/ptr.rs
library/portable-simd/crates/core_simd/src/vector/uint.rs
library/portable-simd/crates/core_simd/src/vendor.rs
library/portable-simd/crates/core_simd/src/vendor/arm.rs
library/portable-simd/crates/core_simd/src/vendor/powerpc.rs
library/portable-simd/crates/core_simd/src/vendor/wasm32.rs
library/portable-simd/crates/core_simd/src/vendor/x86.rs
library/portable-simd/crates/core_simd/tests/f32_ops.rs
library/portable-simd/crates/core_simd/tests/f64_ops.rs
library/portable-simd/crates/core_simd/tests/i16_ops.rs
library/portable-simd/crates/core_simd/tests/i32_ops.rs
library/portable-simd/crates/core_simd/tests/i64_ops.rs
library/portable-simd/crates/core_simd/tests/i8_ops.rs
library/portable-simd/crates/core_simd/tests/isize_ops.rs
library/portable-simd/crates/core_simd/tests/mask_ops.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask16.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask32.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask64.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask8.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mask_macros.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/masksize.rs
library/portable-simd/crates/core_simd/tests/mask_ops_impl/mod.rs
library/portable-simd/crates/core_simd/tests/masks.rs
library/portable-simd/crates/core_simd/tests/ops_macros.rs
library/portable-simd/crates/core_simd/tests/round.rs
library/portable-simd/crates/core_simd/tests/swizzle.rs
library/portable-simd/crates/core_simd/tests/to_bytes.rs
library/portable-simd/crates/core_simd/tests/u16_ops.rs
library/portable-simd/crates/core_simd/tests/u32_ops.rs
library/portable-simd/crates/core_simd/tests/u64_ops.rs
library/portable-simd/crates/core_simd/tests/u8_ops.rs
library/portable-simd/crates/core_simd/tests/usize_ops.rs
library/portable-simd/crates/core_simd/webdriver.json
library/portable-simd/crates/test_helpers/Cargo.toml
library/portable-simd/crates/test_helpers/src/array.rs
library/portable-simd/crates/test_helpers/src/biteq.rs
library/portable-simd/crates/test_helpers/src/lib.rs
library/portable-simd/crates/test_helpers/src/wasm.rs