Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
90bd2ae1
Unverified
Commit
90bd2ae1
authored
May 06, 2025
by
Varun Sundar Rabindranath
Committed by
GitHub
May 05, 2025
Browse files
[Bugfix] LoRA - Retire unused maxnreg LoRA kernel argument (#17677)
parent
5941e0b7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
vllm/lora/ops/triton_ops/lora_expand_op.py
vllm/lora/ops/triton_ops/lora_expand_op.py
+0
-2
vllm/lora/ops/triton_ops/lora_shrink_op.py
vllm/lora/ops/triton_ops/lora_shrink_op.py
+0
-2
No files found.
vllm/lora/ops/triton_ops/lora_expand_op.py
View file @
90bd2ae1
...
@@ -204,7 +204,6 @@ def _lora_expand(
...
@@ -204,7 +204,6 @@ def _lora_expand(
NUM_WARPS
=
4
NUM_WARPS
=
4
NUM_CTAS
=
1
NUM_CTAS
=
1
NUM_STAGES
=
2
NUM_STAGES
=
2
MAX_NREG
=
None
EVEN_K
=
K
%
BLOCK_K
==
0
# type: ignore
EVEN_K
=
K
%
BLOCK_K
==
0
# type: ignore
...
@@ -258,7 +257,6 @@ def _lora_expand(
...
@@ -258,7 +257,6 @@ def _lora_expand(
num_warps
=
NUM_WARPS
,
num_warps
=
NUM_WARPS
,
num_ctas
=
NUM_CTAS
,
num_ctas
=
NUM_CTAS
,
num_stages
=
NUM_STAGES
,
num_stages
=
NUM_STAGES
,
maxnreg
=
MAX_NREG
,
)
)
return
return
...
...
vllm/lora/ops/triton_ops/lora_shrink_op.py
View file @
90bd2ae1
...
@@ -168,7 +168,6 @@ def _lora_shrink(
...
@@ -168,7 +168,6 @@ def _lora_shrink(
NUM_WARPS
=
4
NUM_WARPS
=
4
NUM_CTAS
=
1
NUM_CTAS
=
1
NUM_STAGES
=
2
NUM_STAGES
=
2
MAX_NREG
=
None
EVEN_K
=
K
%
(
BLOCK_K
*
SPLIT_K
)
==
0
# type: ignore
EVEN_K
=
K
%
(
BLOCK_K
*
SPLIT_K
)
==
0
# type: ignore
...
@@ -213,7 +212,6 @@ def _lora_shrink(
...
@@ -213,7 +212,6 @@ def _lora_shrink(
num_warps
=
NUM_WARPS
,
num_warps
=
NUM_WARPS
,
num_ctas
=
NUM_CTAS
,
num_ctas
=
NUM_CTAS
,
num_stages
=
NUM_STAGES
,
num_stages
=
NUM_STAGES
,
maxnreg
=
MAX_NREG
,
)
)
return
return
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment