From e91386cde110e690d754684a2b03707925605f90 Mon Sep 17 00:00:00 2001 From: Aaron Pham Date: Sun, 22 Jun 2025 15:43:07 -0400 Subject: [PATCH] [Chore] dedup logs (#19955) --- vllm/config.py | 2 +- vllm/triton_utils/importing.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/vllm/config.py b/vllm/config.py index ce7e2a2929cf..b8232aae7083 100644 --- a/vllm/config.py +++ b/vllm/config.py @@ -1970,7 +1970,7 @@ class ParallelConfig: if not current_platform.use_custom_allreduce(): self.disable_custom_all_reduce = True - logger.info( + logger.debug( "Disabled the custom all-reduce kernel because it is not " "supported on current platform.") if self.ray_workers_use_nsight and not self.use_ray: diff --git a/vllm/triton_utils/importing.py b/vllm/triton_utils/importing.py index dd30b2bc5f07..6cc8429d76c3 100644 --- a/vllm/triton_utils/importing.py +++ b/vllm/triton_utils/importing.py @@ -74,10 +74,6 @@ class TritonPlaceholder(types.ModuleType): self.heuristics = self._dummy_decorator("heuristics") self.Config = self._dummy_decorator("Config") self.language = TritonLanguagePlaceholder() - logger.warning_once( - "Triton is not installed. Using dummy decorators. " - "Install it via `pip install triton` to enable kernel" - " compilation.") def _dummy_decorator(self, name):