Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor stdsimd #640

Merged
merged 1 commit into from
Jan 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[workspace]
members = [
"crates/stdsimd-verify",
"crates/stdsimd",
"crates/core_arch",
"crates/std_detect",
"examples/"
]
exclude = [
"crates/wasm-assert-instr-tests"
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ and `libstd`.
The easiest way to use it is just to import it via `use std::arch`.

The `std::arch` component for `x86` is available in stable Rust. The `std::arch`
components for other architectures and the `std::simd` component require nightly
Rust.
components for other architectures requires nightly Rust. The `std::simd`
component now lives in the
[`packed_simd`](https://github.com/rust-lang-nursery/packed_simd) crate.

Using `stdsimd` master branch is not recommended. It requires nightly Rust, it
only works with particular Rust nightly versions, and it can (and does) break
Expand All @@ -21,7 +22,8 @@ often. If you need to use `stdsimd` master branch, you can add it to your

```toml
#[dependencies]
stdsimd = { git = "https://github.com/rust-lang-nursery/stdsimd.git" }
core_arch = { git = "https://github.com/rust-lang-nursery/stdsimd.git" }
std_detect = { git = "https://github.com/rust-lang-nursery/stdsimd.git" }
```

# Documentation
Expand Down
11 changes: 6 additions & 5 deletions ci/dox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@ dox() {
rm -rf "target/doc/${arch}"
mkdir "target/doc/${arch}"

cargo build --verbose --target "${target}" --manifest-path crates/stdsimd/Cargo.toml
cargo build --verbose --target "${target}" --manifest-path crates/core_arch/Cargo.toml
cargo build --verbose --target "${target}" --manifest-path crates/std_detect/Cargo.toml

rustdoc --verbose --target "${target}" \
-o "target/doc/${arch}" crates/coresimd/src/lib.rs \
--crate-name coresimd \
-o "target/doc/${arch}" crates/core_arch/src/lib.rs \
--crate-name core_arch \
--library-path "target/${target}/debug/deps"
rustdoc --verbose --target "${target}" \
-o "target/doc/${arch}" crates/stdsimd/src/lib.rs \
--crate-name stdsimd \
-o "target/doc/${arch}" crates/std_detect/src/lib.rs \
--crate-name std_detect \
--library-path "target/${target}/debug/deps" \
--extern cfg_if="$(ls target/"${target}"/debug/deps/libcfg_if-*.rlib)" \
--extern libc="$(ls target/"${target}"/debug/deps/liblibc-*.rlib)"
Expand Down
12 changes: 10 additions & 2 deletions ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ cargo_test() {
cmd="$cmd ${subcmd} --target=$TARGET $1"
if [ "$NOSTD" = "1" ]
then
cmd="$cmd -p coresimd"
cmd="$cmd -p core_arch"
else
cmd="$cmd -p coresimd -p stdsimd"
cmd="$cmd -p core_arch -p std_detect -p stdsimd_examples"
fi
cmd="$cmd -- $2"
if [ "$NORUN" != "1" ]
Expand Down Expand Up @@ -109,4 +109,12 @@ case ${TARGET} in
;;
*)
;;

esac

# Test examples
(
cd examples
cargo test
echo test | cargo run --release hex
)
184 changes: 0 additions & 184 deletions coresimd/mod.rs

This file was deleted.

8 changes: 4 additions & 4 deletions crates/coresimd/Cargo.toml → crates/core_arch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "coresimd"
name = "core_arch"
version = "0.1.3"
authors = [
"Alex Crichton <[email protected]>",
"Andrew Gallant <[email protected]>",
"Gonzalo Brito Gadeschi <[email protected]>",
]
description = "SIMD support in Rust's core library."
documentation = "https://docs.rs/stdsimd"
documentation = "https://docs.rs/core_arch"
homepage = "https://github.com/rust-lang-nursery/stdsimd"
repository = "https://github.com/rust-lang-nursery/stdsimd"
readme = "README.md"
keywords = ["core", "simd", "intrinsics"]
keywords = ["core", "simd", "arch", "intrinsics"]
categories = ["hardware-support", "no-std"]
license = "MIT/Apache-2.0"

Expand All @@ -24,7 +24,7 @@ maintenance = { status = "experimental" }

[dev-dependencies]
stdsimd-test = { version = "0.*", path = "../stdsimd-test" }
stdsimd = { version = "0.1.3", path = "../stdsimd" }
std_detect = { version = "0.1.3", path = "../std_detect" }

[target.wasm32-unknown-unknown.dev-dependencies]
wasm-bindgen-test = "=0.2.19"
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ pub unsafe fn __crc32cd(crc: u32, data: u64) -> u32 {

#[cfg(test)]
mod tests {
use coresimd::aarch64::*;
use coresimd::simd::*;
use core_arch::aarch64::*;
use core_arch::simd::*;
use std::mem;
use stdsimd_test::simd_test;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use coresimd::arm::uint32x4_t;
use coresimd::arm::uint8x16_t;
use core_arch::arm::uint32x4_t;
use core_arch::arm::uint8x16_t;

#[allow(improper_ctypes)]
extern "C" {
Expand Down Expand Up @@ -164,8 +164,8 @@ pub unsafe fn vsha256su1q_u32(

#[cfg(test)]
mod tests {
use coresimd::aarch64::*;
use coresimd::simd::*;
use core_arch::aarch64::*;
use core_arch::simd::*;
use std::mem;
use stdsimd_test::simd_test;

Expand Down
File renamed without changes.
Loading