From d4902ba56d9b265698fb53f2d956117454945371 Mon Sep 17 00:00:00 2001 From: wangxiyuan Date: Wed, 12 Nov 2025 06:28:07 +0800 Subject: [PATCH] [Misc] Cleanup Executor interface (#28441) Signed-off-by: wangxiyuan --- vllm/v1/executor/abstract.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vllm/v1/executor/abstract.py b/vllm/v1/executor/abstract.py index 1e913876b7635..db8303fcec501 100644 --- a/vllm/v1/executor/abstract.py +++ b/vllm/v1/executor/abstract.py @@ -294,12 +294,6 @@ class Executor(ABC): """Reset the multi-modal cache in each worker.""" self.collective_rpc("reset_mm_cache") - def start_profile(self) -> None: - self.collective_rpc("start_profile") - - def stop_profile(self) -> None: - self.collective_rpc("stop_profile") - def sleep(self, level: int = 1): if self.is_sleeping: logger.warning("Executor is already sleeping.")