Skip to content

Commit

Permalink
perp for release
Browse files Browse the repository at this point in the history
  • Loading branch information
rdfriese committed Jan 19, 2023
1 parent 9b875cd commit 8b187f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lamellar"
version = "0.5.0-rc.2"
version = "0.5.0"
authors = ["Ryan D. Friese <[email protected]>", "Roberto Gioiosa <[email protected]>", "Joseph Cottam <[email protected]>","Greg Roek <[email protected]>","Erdal Mutlu <[email protected]>"]
edition = "2021"
description = "Lamellar is an asynchronous tasking runtime for HPC systems developed in RUST."
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ Through out this readme and API documentation (https://docs.rs/lamellar/latest/l
- consists of N PEs all capable of commnicating with one another
- `Team` - A subset of the PEs that exist in the world
- `AM` - short for [Active Message](https://docs.rs/lamellar/latest/lamellar/active_messaging)
- `Collective Operation` - Generally means that all PEs (associated with a given distributed object) must explicitly participate in the operation, otherwise deadlock will occur.
- e.g. barriers, construction of new distributed objects
- `One-sided Operation` - Generally means that only the calling PE is required for the operation to successfuly complete.
- e.g. accessing local data, waiting for local work to complete

# Features

Expand Down Expand Up @@ -226,7 +230,7 @@ Lamellar exposes an number of envrionment variables that can used to control app

NEWS
----
* November 2022: Alpha release -- v0.5
* January 2023: Alpha release -- v0.5
* March 2022: Alpha release -- v0.4
* April 2021: Alpha release -- v0.3
* September 2020: Add support for "local" lamellae, prep for crates.io release -- v0.2.1
Expand Down
2 changes: 1 addition & 1 deletion impl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lamellar-impl"
version = "0.5.0-rc.1"
version = "0.5.0"
authors = ["Ryan D. Friese <[email protected]>", "Roberto Gioiosa <[email protected]>", "Joseph Cottam <[email protected]>","Greg Roek <[email protected]>","Erdal Mutlu <[email protected]>"]
edition = "2021"
description = "Lamellar is an asynchronous tasking runtime for HPC systems developed in RUST."
Expand Down
2 changes: 1 addition & 1 deletion src/array/operations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ impl<T> ElementBitWiseOps for T where
pub trait ElementCompareEqOps: std::cmp::Eq + Dist + Sized //+ AmDist
{
}
impl<T> ElementCompareEqOps for T where T: std::cmp::Eq + Dist //+ AmDist,,
impl<T> ElementCompareEqOps for T where T: std::cmp::Eq + Dist //+ AmDist,,,
{
}

Expand Down

0 comments on commit 8b187f8

Please sign in to comment.