Skip to content

Commit

Permalink
Bump the crate versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentMazare committed Sep 18, 2023
1 parent 32fb2c3 commit b7c137d
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions gemm-c32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-c32"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,7 +19,7 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions gemm-c64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-c64"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,7 +19,7 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }

[features]
default = ["std"]
Expand Down
2 changes: 1 addition & 1 deletion gemm-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-common"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand Down
6 changes: 3 additions & 3 deletions gemm-f16/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-f16"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,8 +19,8 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-f32 = { version = "0.15", path = "../gemm-f32", package = "candle-gemm-f32" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }
gemm-f32 = { version = "0.16", path = "../gemm-f32", package = "candle-gemm-f32" }
half = { version = "2.2", features = ["num-traits"] }

[features]
Expand Down
4 changes: 2 additions & 2 deletions gemm-f32/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-f32"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,7 +19,7 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions gemm-f64/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm-f64"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,7 +19,7 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }

[features]
default = ["std"]
Expand Down
14 changes: 7 additions & 7 deletions gemm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "candle-gemm"
version = "0.15.6"
version = "0.16.0"
edition = "2021"
authors = ["sarah <>"]
description = "Playground for matrix multiplication algorithms"
Expand All @@ -19,12 +19,12 @@ num-complex = { workspace = true }
rayon = { workspace = true }
paste = { workspace = true }

gemm-common = { version = "0.15", path = "../gemm-common", package = "candle-gemm-common" }
gemm-f16 = { version = "0.15", path = "../gemm-f16", package = "candle-gemm-f16" }
gemm-f32 = { version = "0.15", path = "../gemm-f32", package = "candle-gemm-f32" }
gemm-f64 = { version = "0.15", path = "../gemm-f64", package = "candle-gemm-f64" }
gemm-c32 = { version = "0.15", path = "../gemm-c32", package = "candle-gemm-c32" }
gemm-c64 = { version = "0.15", path = "../gemm-c64", package = "candle-gemm-c64" }
gemm-common = { version = "0.16", path = "../gemm-common", package = "candle-gemm-common" }
gemm-f16 = { version = "0.16", path = "../gemm-f16", package = "candle-gemm-f16" }
gemm-f32 = { version = "0.16", path = "../gemm-f32", package = "candle-gemm-f32" }
gemm-f64 = { version = "0.16", path = "../gemm-f64", package = "candle-gemm-f64" }
gemm-c32 = { version = "0.16", path = "../gemm-c32", package = "candle-gemm-c32" }
gemm-c64 = { version = "0.16", path = "../gemm-c64", package = "candle-gemm-c64" }

[features]
default = ["std"]
Expand Down

0 comments on commit b7c137d

Please sign in to comment.