From ea4edb851d1c51c1ae5ac1b1091fdc6d20303738 Mon Sep 17 00:00:00 2001 From: Eric Buehler Date: Tue, 25 Feb 2025 21:31:08 -0500 Subject: [PATCH] Fix check for dummy v --- Cargo.toml | 4 ++-- mistralrs-core/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 78a8a7be6..81c395279 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,8 +24,8 @@ rust-version = "1.82" [workspace.dependencies] anyhow = "1.0.80" -candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "3b3cd2fb" } -candle-nn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "3b3cd2fb" } +candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "64a8cde7" } +candle-nn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "64a8cde7" } serde = "1.0.197" serde_json = "1.0.114" indexmap = { version = "2.2.5", features = ["serde"] } diff --git a/mistralrs-core/Cargo.toml b/mistralrs-core/Cargo.toml index c935534fb..73bb7006d 100644 --- a/mistralrs-core/Cargo.toml +++ b/mistralrs-core/Cargo.toml @@ -17,7 +17,7 @@ candle-core.workspace = true candle-nn.workspace = true serde.workspace = true serde_json.workspace = true -candle-flash-attn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "3b3cd2fb", optional = true } +candle-flash-attn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "64a8cde7", optional = true } dirs = "5.0.1" hf-hub = { version = "0.3.3", package = "candle-hf-hub" } thiserror = "1.0.57" @@ -81,8 +81,8 @@ llguidance = { git = "https://github.com/microsoft/llguidance", rev = "cfef3df97 toktrie_hf_tokenizers = { git = "https://github.com/microsoft/llguidance", rev = "cfef3df97372a7b84d74976ff41cc9cb78bca6cc" } objc = { version = "0.2.7", optional = true } metal = { workspace = true, optional = true } -candle-flash-attn-v3 = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "3b3cd2fb", optional = true } -candle-flash-mla = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "3b3cd2fb", optional = true } +candle-flash-attn-v3 = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "64a8cde7", optional = true } +candle-flash-mla = { git = "https://github.com/EricLBuehler/candle.git", version = "0.8.0", rev = "64a8cde7", optional = true } safetensors.workspace = true serde-big-array = "0.5.1" interprocess = "2.2.2"