File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -2686,13 +2686,6 @@ def verify_with_model_config(self, model_config: ModelConfig):
2686
2686
elif isinstance (self .lora_dtype , str ):
2687
2687
self .lora_dtype = getattr (torch , self .lora_dtype )
2688
2688
2689
- def verify_with_scheduler_config (self , scheduler_config : SchedulerConfig ):
2690
- # Reminder: Please update docs/source/features/compatibility_matrix.md
2691
- # If the feature combo become valid
2692
- if scheduler_config .chunked_prefill_enabled :
2693
- logger .warning ("LoRA with chunked prefill is still experimental "
2694
- "and may be unstable." )
2695
-
2696
2689
def verify_lora_support (self ):
2697
2690
if self .long_lora_scaling_factors is not None and envs .VLLM_USE_V1 :
2698
2691
raise ValueError (
@@ -3820,8 +3813,6 @@ def __post_init__(self):
3820
3813
if self .lora_config :
3821
3814
self .lora_config .verify_with_cache_config (self .cache_config )
3822
3815
self .lora_config .verify_with_model_config (self .model_config )
3823
- self .lora_config .verify_with_scheduler_config (
3824
- self .scheduler_config )
3825
3816
self .lora_config .verify_lora_support ()
3826
3817
if self .prompt_adapter_config :
3827
3818
self .prompt_adapter_config .verify_with_model_config (
You can’t perform that action at this time.
0 commit comments