From bd66a55d59f7a839c864424b298c5acbdeebcc7a Mon Sep 17 00:00:00 2001 From: Luke Kim <80174+lukekim@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:45:51 -0700 Subject: [PATCH] Bump candle rev to 7de0d9fd (moe_gemm_wmma renamed to avoid collision) Picks up spiceai/candle#13 which renames candle-kernels' moe_gemm_wmma -> candle_moe_gemm_wmma so it no longer collides with mistralrs-core's identically-named but semantically divergent kernel when both crates are linked together (e.g. in spiced --features cuda,models). --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 375c5d175..195cb963a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,10 +84,10 @@ candle-layer-norm = { git = "https://github.com/spiceai/candle-layer-norm", rev # cudarc = { git = "https://github.com/Narsil/cudarc", rev = "8b4f18b4bcd5e4b1a9daf40abc3a2e27f83f06e9" } cudarc = { git = "https://github.com/EricLBuehler/cudarc", rev = "34834440ada40a7c53d46d45b65d5e42c5f5d903" } # -candle = { git = "https://github.com/spiceai/candle", rev = "c87b9bc5ddfd4fdd4446ac7efae1566583ab1d55", package = "candle-core" } -candle-nn = { git = "https://github.com/spiceai/candle", rev = "c87b9bc5ddfd4fdd4446ac7efae1566583ab1d55", package = "candle-nn" } -candle-transformers = { git = "https://github.com/spiceai/candle", rev = "c87b9bc5ddfd4fdd4446ac7efae1566583ab1d55", package = "candle-transformers" } -candle-flash-attn = { git = "https://github.com/spiceai/candle", rev = "c87b9bc5ddfd4fdd4446ac7efae1566583ab1d55", package = "candle-flash-attn" } +candle = { git = "https://github.com/spiceai/candle", rev = "7de0d9fdff7dfb6289442abfba821e8d77f57c58", package = "candle-core" } +candle-nn = { git = "https://github.com/spiceai/candle", rev = "7de0d9fdff7dfb6289442abfba821e8d77f57c58", package = "candle-nn" } +candle-transformers = { git = "https://github.com/spiceai/candle", rev = "7de0d9fdff7dfb6289442abfba821e8d77f57c58", package = "candle-transformers" } +candle-flash-attn = { git = "https://github.com/spiceai/candle", rev = "7de0d9fdff7dfb6289442abfba821e8d77f57c58", package = "candle-flash-attn" } [profile.release] debug = 0 lto = "fat"