diff options
author | Laurent Mazare <laurent.mazare@gmail.com> | 2024-01-07 12:26:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-07 12:26:20 +0100 |
commit | e72d52b1a2118f8773866e87237586bab762a9c6 (patch) | |
tree | a31a94ecdf82a5c4d0078331fad555dd1bb836c8 /candle-flash-attn | |
parent | b4cb982e498fc121992e7c03d00d04755a66001f (diff) | |
download | candle-e72d52b1a2118f8773866e87237586bab762a9c6.tar.gz candle-e72d52b1a2118f8773866e87237586bab762a9c6.tar.bz2 candle-e72d52b1a2118f8773866e87237586bab762a9c6.zip |
Unpin more of the workplace relative dependencies. (#1535)
Diffstat (limited to 'candle-flash-attn')
-rw-r--r-- | candle-flash-attn/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/candle-flash-attn/Cargo.toml b/candle-flash-attn/Cargo.toml index 64e690e6..0d3af91d 100644 --- a/candle-flash-attn/Cargo.toml +++ b/candle-flash-attn/Cargo.toml @@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0" readme = "README.md" [dependencies] -candle = { path = "../candle-core", features = ["cuda"], version = "0.3.3", package = "candle-core" } +candle = { path = "../candle-core", features = ["cuda"], 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.3", features = ["cuda"] } +candle-nn = { path = "../candle-nn", features = ["cuda"] } |