Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions fastdeploy/engine/args_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,12 +571,7 @@ def __post_init__(self):
and not current_platform.is_maca()
):
self.enable_prefix_caching = False
if (
not current_platform.is_cuda()
or (self.speculative_config is not None and self.enable_logprob)
or self.splitwise_role == "prefill"
or self.dynamic_load_weight
):
if not current_platform.is_cuda() or self.splitwise_role == "prefill":
self.enable_overlap_schedule = False
if self.enable_logprob:
if not current_platform.is_cuda() and not current_platform.is_xpu():
Expand Down
Loading