Skip to content

Commit

Permalink
Publish packed_simd again
Browse files Browse the repository at this point in the history
  • Loading branch information
workingjubilee committed Apr 16, 2023
1 parent e4ec7ce commit 93a6cb3
Show file tree
Hide file tree
Showing 17 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "packed_simd_2"
name = "packed_simd"
version = "0.3.8"
description = "Portable Packed SIMD vectors"
documentation = "https://docs.rs/crate/packed_simd/"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you need to continue to use the crate, we have published a "next version" und

Adjust your `[dependencies]` section of `Cargo.toml` to be the following:
```toml
packed_simd = { version = "0.3.8", package = "packed_simd_2" }
packed_simd = { version = "0.3.8", package = "packed_simd" }
```

# `Simd<[T; N]>`
Expand Down Expand Up @@ -146,11 +146,11 @@ dual licensed as above, without any additional terms or conditions.
[Travis-CI Status]: https://travis-ci.com/rust-lang/packed_simd.svg?branch=master
[appveyor]: https://ci.appveyor.com/project/gnzlbg/packed-simd
[Appveyor Status]: https://ci.appveyor.com/api/projects/status/hd7v9dvr442hgdix?svg=true
[Latest Version]: https://img.shields.io/crates/v/packed_simd_2.svg
[crates.io]: https://crates.io/crates/packed_simd_2
[docs]: https://docs.rs/packed_simd_2/badge.svg
[docs.rs]: https://docs.rs/packed_simd_2
[master_docs]: https://rust-lang-nursery.github.io/packed_simd/packed_simd_2/
[Latest Version]: https://img.shields.io/crates/v/packed_simd.svg
[crates.io]: https://crates.io/crates/packed_simd
[docs]: https://docs.rs/packed_simd/badge.svg
[docs.rs]: https://docs.rs/packed_simd
[master_docs]: https://rust-lang-nursery.github.io/packed_simd/packed_simd/
[perf_guide]: https://rust-lang-nursery.github.io/packed_simd/perf-guide/
[rfc2366]: https://github.com/rust-lang/rfcs/pull/2366
[ISPC]: https://ispc.github.io/
Expand Down
2 changes: 1 addition & 1 deletion examples/aobench/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/lib.rs"
structopt = "^0.3"
failure = "^0.1"
png = "^0.15"
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
rayon = "^1.0"
time = "^0.1"
cfg-if = "^0.1"
Expand Down
2 changes: 1 addition & 1 deletion examples/dot_product/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[lib]
name = "dot_product_lib"
Expand Down
2 changes: 1 addition & 1 deletion examples/fannkuch_redux/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[[bin]]
name = "fannkuch_redux"
Expand Down
2 changes: 1 addition & 1 deletion examples/mandelbrot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build = "build.rs"
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
rayon = "^1.0"
ispc = { version = "^1.0.4", optional = true }
structopt = { version = "0.3.0", features = ["color"] }
Expand Down
2 changes: 1 addition & 1 deletion examples/matrix_inverse/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[lib]
name = "matrix_inverse_lib"
Expand Down
2 changes: 1 addition & 1 deletion examples/nbody/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[[bin]]
name = "nbody"
Expand Down
2 changes: 1 addition & 1 deletion examples/options_pricing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
time = "^0.1"
rayon = "^1.0"
ispc = { version = "^1.0.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/slice_sum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "slice_sum"
path = "src/main.rs"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
rayon = "^1.0"
time = "^0.1"
rand = "0.7.0"
2 changes: 1 addition & 1 deletion examples/spectral_norm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[[bin]]
name = "spectral_norm"
Expand Down
2 changes: 1 addition & 1 deletion examples/stencil/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["gnzlbg <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
time = "^0.1"
rayon = "^1.0"
ispc = { version = "^1.0.4", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion examples/triangle_xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Gonzalo Brito Gadeschi <[email protected]>"]
edition = "2018"

[dependencies]
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }

[dev-dependencies]
rand = "0.7.0"
Expand Down
2 changes: 1 addition & 1 deletion micro_benchmarks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ autobenches = false
edition = "2018"

[dev-dependencies]
packed_simd = { package = "packed_simd_2", path = ".." }
packed_simd = { package = "packed_simd", path = ".." }
paste = "0.1.3"
criterion = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions src/api/shuffle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
/// Shuffling elements of two vectors:
///
/// ```
/// # use packed_simd_2::*;
/// # use packed_simd::*;
/// # fn main() {
/// // Shuffle allows reordering the elements:
/// let x = i32x4::new(1, 2, 3, 4);
Expand All @@ -49,7 +49,7 @@
/// Shuffling elements of one vector:
///
/// ```
/// # use packed_simd_2::*;
/// # use packed_simd::*;
/// # fn main() {
/// // Shuffle allows reordering the elements of a vector:
/// let x = i32x4::new(1, 2, 3, 4);
Expand Down
2 changes: 1 addition & 1 deletion tests/endianness.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#[cfg(target_arch = "wasm32")]
use wasm_bindgen_test::*;

use packed_simd_2::*;
use packed_simd::*;
use std::{mem, slice};

#[cfg_attr(not(target_arch = "wasm32"), test)]
Expand Down
2 changes: 1 addition & 1 deletion verify/verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ edition = "2018"

[dev-dependencies]
stdarch-test = { git = "https://github.com/rust-lang/stdarch.git" }
packed_simd = { package = "packed_simd_2", path = "../.." }
packed_simd = { package = "packed_simd", path = "../.." }
cfg-if = "^0.1"
paste = "^0.1.3"

0 comments on commit 93a6cb3

Please sign in to comment.