From 48545728d872e9311b4a87b7976673fc7d1fb554 Mon Sep 17 00:00:00 2001 From: Calvin Chen <45745657+calvin0327@users.noreply.github.com> Date: Tue, 13 May 2025 14:01:57 +0800 Subject: [PATCH] cleanup invalid prints (#18050) Signed-off-by: calvin chen <120380290@qq.com> --- vllm/worker/hpu_model_runner.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/vllm/worker/hpu_model_runner.py b/vllm/worker/hpu_model_runner.py index a343e2fedb23d..e2261cbb26b44 100644 --- a/vllm/worker/hpu_model_runner.py +++ b/vllm/worker/hpu_model_runner.py @@ -1554,10 +1554,8 @@ class HPUModelRunnerBase(ModelRunnerBase[TModelInputForHPU]): 'Please update Gaudi Software Suite.') with compile_only_mode_context( ) if can_use_compile_only_mode else contextlib.nullcontext(): - print("aa") self.warmup_all_buckets(self.bucketing_ctx.prompt_buckets, True, kv_caches) - print("bb") self.warmup_all_buckets(self.bucketing_ctx.decode_buckets, False, kv_caches)