We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a049c7 commit 5d8e1c9Copy full SHA for 5d8e1c9
vllm/lora/ops/triton_ops/kernel_utils.py
@@ -130,7 +130,7 @@ def do_expand_kernel(
130
# Identify A and B block pointers
131
offset_k = tl.arange(0, BLOCK_K)
132
a_ptr = (cur_input_ptr + ram[:, None] * input_d1_stride +
133
- offset_k[None, :] * input_d2_stride, )
+ offset_k[None, :] * input_d2_stride)
134
b_ptr = (cur_lora_ptr + cur_lora_d0_stride * lora_index +
135
offset_k[:, None] * cur_lora_d2_stride +
136
rbn[None, :] * cur_lora_d1_stride)
0 commit comments