mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-26 02:49:37 +08:00
[Bugfix] LoRA - Retire unused maxnreg LoRA kernel argument (#17677)
This commit is contained in:
parent
5941e0b7ea
commit
90bd2ae172
@ -204,7 +204,6 @@ def _lora_expand(
|
||||
NUM_WARPS = 4
|
||||
NUM_CTAS = 1
|
||||
NUM_STAGES = 2
|
||||
MAX_NREG = None
|
||||
|
||||
EVEN_K = K % BLOCK_K == 0 # type: ignore
|
||||
|
||||
@ -258,7 +257,6 @@ def _lora_expand(
|
||||
num_warps=NUM_WARPS,
|
||||
num_ctas=NUM_CTAS,
|
||||
num_stages=NUM_STAGES,
|
||||
maxnreg=MAX_NREG,
|
||||
)
|
||||
|
||||
return
|
||||
|
||||
@ -168,7 +168,6 @@ def _lora_shrink(
|
||||
NUM_WARPS = 4
|
||||
NUM_CTAS = 1
|
||||
NUM_STAGES = 2
|
||||
MAX_NREG = None
|
||||
|
||||
EVEN_K = K % (BLOCK_K * SPLIT_K) == 0 # type: ignore
|
||||
|
||||
@ -213,7 +212,6 @@ def _lora_shrink(
|
||||
num_warps=NUM_WARPS,
|
||||
num_ctas=NUM_CTAS,
|
||||
num_stages=NUM_STAGES,
|
||||
maxnreg=MAX_NREG,
|
||||
)
|
||||
|
||||
return
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user