From 075bd712721277cb7884bdb5136072bfce62ddab Mon Sep 17 00:00:00 2001 From: Jiang-Jia-Jun <163579578+Jiang-Jia-Jun@users.noreply.github.com> Date: Tue, 16 Dec 2025 11:09:27 +0800 Subject: [PATCH] Remove GPUMemoryChecker initialization Removed memory checker initialization from GPU model runner. --- fastdeploy/worker/gpu_model_runner.py | 1 - 1 file changed, 1 deletion(-) diff --git a/fastdeploy/worker/gpu_model_runner.py b/fastdeploy/worker/gpu_model_runner.py index 00c3bf127..354ef26bc 100644 --- a/fastdeploy/worker/gpu_model_runner.py +++ b/fastdeploy/worker/gpu_model_runner.py @@ -187,7 +187,6 @@ class GPUModelRunner(ModelRunnerBase): self.cudagraph_capture_sizes = list(reversed(self.graph_opt_config.cudagraph_capture_sizes)) self.sot_warmup_sizes = self.graph_opt_config.sot_warmup_sizes self.cudagraph_only_prefill = self.graph_opt_config.cudagraph_only_prefill - self.mem_checker = GPUMemoryChecker(device_id=self.device_id, print_debug_info=False) # Initialize share inputs self._init_share_inputs(self.scheduler_config.max_num_seqs)