Skip to content
Merged
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
3 changes: 3 additions & 0 deletions vllm_ascend/eplb/core/eplb_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,9 @@ def worker_process(self, planner_q, block_update_q):
"""
Subprocess entry: bind to specified NPU, loop waiting for planner_q to wake up, call do_update, then notify main process update is complete.
"""
if self.policy_type == 3:
from vllm_ascend.eplb.core.policy.policy_flashlb import warm_up
warm_up()
while True:
try:
planner_q.get()
Expand Down
Loading