Skip to content

Commit

Permalink
ndarray-parallel 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Apr 9, 2017
1 parent 006ebe9 commit b03f123
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions parallel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ndarray-parallel"
version = "0.3.0-alpha.1"
version = "0.3.0"
authors = ["bluss"]
license = "MIT/Apache-2.0"

Expand All @@ -14,7 +14,7 @@ categories = ["data-structures", "science", "concurrency"]

[dependencies]
rayon = { version = "0.7.0" }
ndarray = { version = "0.9.0-alpha.1", path = "../" }
ndarray = { version = "0.9.0", path = "../" }

[dev-dependencies]
num_cpus = "1.2"
Expand Down
8 changes: 5 additions & 3 deletions parallel/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ __ http://docs.rs/ndarray-parallel/
Highlights
----------

- Parallel `Zip`
- Parallel elementwise (no order) iterator
- Parallel `.axis_iter()` (and `_mut`)
- `.par_map_inplace()` for arrays.

Status and Lookout
------------------
Expand All @@ -42,16 +44,16 @@ Status and Lookout
How to use with cargo::

[dependencies]
ndarray-parallel = "0.1"
ndarray-parallel = "0.3"

Recent Changes (ndarray-parallel)
---------------------------------

- 0.3.0-alpha.1
- 0.3.0

- ParallelIterator for Zip, including ``.par_apply``.
- ``.par_map_inplace`` and ``.par_mav_inplace`` for arrays
- Require ndarray 0.9 (when released) and rayon 0.7
- Require ndarray 0.9 and rayon 0.7

- 0.2.0

Expand Down

0 comments on commit b03f123

Please sign in to comment.