diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2023-11-11 18:48:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-11 18:48:52 +0000 |
commit | a209ce8ceb10c2bcdfca9fcf814b7231964f7907 (patch) | |
tree | 0af45b4b2704fa030ae2bccde53cceee7232d599 /candle-flash-attn | |
parent | f1e678b39cf39ec0719a8122865a23b0a0d7f60c (diff) | |
download | candle-a209ce8ceb10c2bcdfca9fcf814b7231964f7907.tar.gz candle-a209ce8ceb10c2bcdfca9fcf814b7231964f7907.tar.bz2 candle-a209ce8ceb10c2bcdfca9fcf814b7231964f7907.zip |
Update for 0.3.1. (#1324)
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 e9b036b5..ef7b16a0 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.0" +version = "0.3.1" 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.0", package = "candle-core" } +candle = { path = "../candle-core", features = ["cuda"], version = "0.3.1", 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.0", features = ["cuda"] } +candle-nn = { path = "../candle-nn", version = "0.3.1", features = ["cuda"] } |