Skip to content

Commit 581c529

Browse files
committed
fix tests
1 parent 13e5e2a commit 581c529

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

vllm/spec_decode/spec_decode_worker.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,9 @@ def determine_num_available_blocks(
347347
draft_num_gpu_blocks = None
348348
draft_num_cpu_blocks = None
349349

350-
if self.proposer_worker.device_config.device.type == "cpu":
350+
if hasattr(
351+
self.proposer_worker, "device_config"
352+
) and self.proposer_worker.device_config.device.type == "cpu":
351353
draft_num_gpu_blocks, draft_num_cpu_blocks = (
352354
self.proposer_worker.determine_num_available_blocks())
353355
else:

0 commit comments

Comments
 (0)