diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-12-17 05:34:53 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-17 05:34:53 -0600 |
commit | 94817dac56f3c91235ad94b7b3419ab8c2e87134 (patch) | |
tree | 367326a4fd8241b4d2b65975f8ec4d19afb83017 /candle-flash-attn | |
parent | 1e86717bf274c6a0380f56f195727812e49f80a2 (diff) | |
download | candle-94817dac56f3c91235ad94b7b3419ab8c2e87134.tar.gz candle-94817dac56f3c91235ad94b7b3419ab8c2e87134.tar.bz2 candle-94817dac56f3c91235ad94b7b3419ab8c2e87134.zip |
Bump the crate version to 0.3.2. (#1452)
Diffstat (limited to 'candle-flash-attn')
-rw-r--r-- | candle-flash-attn/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/candle-flash-attn/Cargo.toml b/candle-flash-attn/Cargo.toml index ef7b16a0..a84cb3dc 100644 --- a/candle-flash-attn/Cargo.toml +++ b/candle-flash-attn/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "candle-flash-attn" -version = "0.3.1" +version = "0.3.2" edition = "2021" description = "Flash attention layer for the candle ML framework." @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" readme = "README.md" [dependencies] -candle = { path = "../candle-core", features = ["cuda"], version = "0.3.1", package = "candle-core" } +candle = { path = "../candle-core", features = ["cuda"], version = "0.3.2", package = "candle-core" } half = { version = "2.3.1", features = ["num-traits"] } [build-dependencies] @@ -21,4 +21,4 @@ rayon = "1.7.0" [dev-dependencies] anyhow = { version = "1", features = ["backtrace"] } -candle-nn = { path = "../candle-nn", version = "0.3.1", features = ["cuda"] } +candle-nn = { path = "../candle-nn", version = "0.3.2", features = ["cuda"] } |