Skip to content

Commit 8635659

Browse files
committed
fix: style
Signed-off-by: Mickael Seznec <mickael@mistral.ai>
1 parent 79573f5 commit 8635659

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

csrc/attention/mla/cutlass_mla_entry.cu

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,14 @@ void sm100_cutlass_mla_decode(
2929
torch::Tensor const& out, torch::Tensor const& q_nope,
3030
torch::Tensor const& q_pe, torch::Tensor const& kv_c_and_k_pe_cache,
3131
torch::Tensor const& seq_lens, torch::Tensor const& page_table,
32-
torch::Tensor const& workspace, double sm_scale,
33-
int64_t num_kv_splits =
34-
1 /* Set to 1 to avoid cuda_graph issue by default. */) {
32+
torch::Tensor const& workspace, double sm_scale, int64_t num_kv_splits) {
3533
TORCH_CHECK_NOT_IMPLEMENTED(false, "No compiled cutlass MLA");
3634
}
3735

38-
int64_t sm100_cutlass_mla_get_workspace_size(
39-
int64_t max_seq_len, int64_t num_batches, int64_t sm_count = 0,
40-
int64_t num_kv_splits =
41-
1 /* Set to 1 to avoid cuda_graph issue by default. */) {
36+
int64_t sm100_cutlass_mla_get_workspace_size(int64_t max_seq_len,
37+
int64_t num_batches,
38+
int64_t sm_count = 0,
39+
int64_t num_kv_splits) {
4240
TORCH_CHECK_NOT_IMPLEMENTED(false, "No compiled cutlass MLA");
4341
}
4442
#endif

0 commit comments

Comments
 (0)