From a702c6dd2944aaf75800b11f4dfeec6fe5a9b068 Mon Sep 17 00:00:00 2001 From: Eric Buehler Date: Fri, 13 Sep 2024 14:47:33 -0400 Subject: [PATCH] Merge into master --- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- mistralrs-core/Cargo.toml | 2 +- mistralrs-pyo3/Cargo_template.toml | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9ca2768f6..c07f4d6bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -387,7 +387,7 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" [[package]] name = "candle-core" version = "0.6.1" -source = "git+https://github.com/EricLBuehler/candle.git?rev=aa32753#aa3275391e45d8c95e2fb0b463379fe2b95ed2b5" +source = "git+https://github.com/EricLBuehler/candle.git?rev=8a99f7c#8a99f7cf31a1d8f175281492eaa7026730067d08" dependencies = [ "accelerate-src", "byteorder", @@ -414,7 +414,7 @@ dependencies = [ [[package]] name = "candle-flash-attn" version = "0.6.1" -source = "git+https://github.com/EricLBuehler/candle.git?rev=aa32753#aa3275391e45d8c95e2fb0b463379fe2b95ed2b5" +source = "git+https://github.com/EricLBuehler/candle.git?rev=8a99f7c#8a99f7cf31a1d8f175281492eaa7026730067d08" dependencies = [ "anyhow", "bindgen_cuda 0.1.5", @@ -425,7 +425,7 @@ dependencies = [ [[package]] name = "candle-kernels" version = "0.6.1" -source = "git+https://github.com/EricLBuehler/candle.git?rev=aa32753#aa3275391e45d8c95e2fb0b463379fe2b95ed2b5" +source = "git+https://github.com/EricLBuehler/candle.git?rev=8a99f7c#8a99f7cf31a1d8f175281492eaa7026730067d08" dependencies = [ "bindgen_cuda 0.1.5", ] @@ -433,7 +433,7 @@ dependencies = [ [[package]] name = "candle-metal-kernels" version = "0.6.1" -source = "git+https://github.com/EricLBuehler/candle.git?rev=aa32753#aa3275391e45d8c95e2fb0b463379fe2b95ed2b5" +source = "git+https://github.com/EricLBuehler/candle.git?rev=8a99f7c#8a99f7cf31a1d8f175281492eaa7026730067d08" dependencies = [ "metal", "once_cell", @@ -444,7 +444,7 @@ dependencies = [ [[package]] name = "candle-nn" version = "0.6.1" -source = "git+https://github.com/EricLBuehler/candle.git?rev=aa32753#aa3275391e45d8c95e2fb0b463379fe2b95ed2b5" +source = "git+https://github.com/EricLBuehler/candle.git?rev=8a99f7c#8a99f7cf31a1d8f175281492eaa7026730067d08" dependencies = [ "accelerate-src", "candle-core", diff --git a/Cargo.toml b/Cargo.toml index b28104e39..ee22147d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,8 +25,8 @@ license = "MIT" [workspace.dependencies] anyhow = "1.0.80" -candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "aa32753" } -candle-nn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "aa32753" } +candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "8a99f7c" } +candle-nn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "8a99f7c" } 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 bdd574f4f..7866bd743 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.6.0", rev = "aa32753", optional = true } +candle-flash-attn = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "8a99f7c", optional = true } dirs = "5.0.1" hf-hub = "0.3.2" thiserror = "1.0.57" diff --git a/mistralrs-pyo3/Cargo_template.toml b/mistralrs-pyo3/Cargo_template.toml index df014b120..7946eee0d 100644 --- a/mistralrs-pyo3/Cargo_template.toml +++ b/mistralrs-pyo3/Cargo_template.toml @@ -20,7 +20,7 @@ pyo3.workspace = true mistralrs-core = { version = "0.3.0", path = "../mistralrs-core", features=["pyo3_macros","$feature_name"] } serde.workspace = true serde_json.workspace = true -candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "aa32753", features=["$feature_name"] } +candle-core = { git = "https://github.com/EricLBuehler/candle.git", version = "0.6.0", rev = "8a99f7c", features=["$feature_name"] } indexmap.workspace = true accelerate-src = { workspace = true, optional = true } intel-mkl-src = { workspace = true, optional = true }