@@ -710,24 +710,17 @@ def verify_async_output_proc(self, parallel_config, speculative_config,
710710 return
711711
712712 if parallel_config .pipeline_parallel_size > 1 :
713- logger .warning ("Async output processing can not be enabled "
714- "with pipeline parallel" )
715713 self .use_async_output_proc = False
716714 return
717715
718716 # Reminder: Please update docs/source/features/compatibility_matrix.md
719717 # If the feature combo become valid
720718 from vllm .platforms import current_platform
721719 if not current_platform .is_async_output_supported (self .enforce_eager ):
722- logger .warning (
723- "Async output processing is not supported on the "
724- "current platform type %s." , current_platform .device_type )
725720 self .use_async_output_proc = False
726721 return
727722
728723 if envs .VLLM_USE_RAY_SPMD_WORKER :
729- logger .warning (
730- "Async output processing can not be enabled with ray spmd" )
731724 self .use_async_output_proc = False
732725 return
733726
@@ -739,8 +732,6 @@ def verify_async_output_proc(self, parallel_config, speculative_config,
739732 # Reminder: Please update docs/source/features/compatibility_matrix.md
740733 # If the feature combo become valid
741734 if speculative_config :
742- logger .warning ("Async output processing is not supported with"
743- " speculative decoding currently." )
744735 self .use_async_output_proc = False
745736
746737 def verify_with_parallel_config (
@@ -768,8 +759,6 @@ def verify_with_parallel_config(
768759 "Supported models implement the `SupportsPP` interface." )
769760
770761 if self .use_async_output_proc :
771- logger .warning ("Async output processor is not supported with "
772- "pipeline parallelism currently. Disabling it." )
773762 self .use_async_output_proc = False
774763
775764 def get_hf_config_sliding_window (
0 commit comments