We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e5e2a commit 581c529Copy full SHA for 581c529
vllm/spec_decode/spec_decode_worker.py
@@ -347,7 +347,9 @@ def determine_num_available_blocks(
347
draft_num_gpu_blocks = None
348
draft_num_cpu_blocks = None
349
350
- if self.proposer_worker.device_config.device.type == "cpu":
+ if hasattr(
351
+ self.proposer_worker, "device_config"
352
+ ) and self.proposer_worker.device_config.device.type == "cpu":
353
draft_num_gpu_blocks, draft_num_cpu_blocks = (
354
self.proposer_worker.determine_num_available_blocks())
355
else:
0 commit comments