1 parent 0acf674 commit 4bbb809Copy full SHA for 4bbb809
6 files changed
Cargo.toml
@@ -45,7 +45,7 @@ dirs = "5.0.1"
45
minijinja = { version = "2.10.2", features = ["builtins", "json"] }
46
minijinja-contrib = { version = "2.10.2", features = ["pycompat"] }
47
thiserror = "1.0.58"
48
-attention-rs = { git = "https://github.com/guoqingbao/attention.rs.git", version="0.6.6", rev = "2e0db42" }
+attention-rs = { git = "https://github.com/guoqingbao/attention.rs.git", version="0.6.7", rev = "70ed0d0" }
49
metal = { version = "0.27.0", features = ["mps"], optional = true }
50
lazy_static = {version = "1.4.0"}
51
interprocess = "2.2.2"
src/backend/graph.rs
@@ -620,6 +620,8 @@ impl<M: CudaGraphModule> GraphCapturer<M> {
620
mamba_slot_mapping: Some(mamba_slot_mapping.narrow(0, 0, bs)?),
621
slot_mapping: slot_mapping.narrow(0, 0, bs)?,
622
block_tables: Some(block_tables.narrow(0, 0, bs)?),
623
+ block_tables_host: None,
624
+ context_lens_host: None,
625
context_lens: Some(context_lens.narrow(0, 0, bs)?),
626
cu_seqlens_q: None,
627
cu_seqlens_k: None,
@@ -793,6 +795,8 @@ impl<M: CudaGraphModule> GraphCapturer<M> {
793
795
mamba_slot_mapping: Some(mamba_slot_mapping.clone()),
794
796
slot_mapping: slot_mapping.clone(),
797
block_tables: Some(block_tables.clone()),
798
799
800
context_lens: Some(context_lens.clone()),
801
cu_seqlens_q: Some(cu_seqlens_q.clone()),
802
cu_seqlens_k: Some(cu_seqlens_k.clone()),
0 commit comments