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
3 changes: 2 additions & 1 deletion vllm_spyre/v1/worker/spyre_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,10 @@
# as it's where the model is actually compiled.
def __stagger_exit__(*args, **kwargs):
with utils_spyre.stagger_region(limit, world_size, rank):
sendnn_exit(*args, **kwargs)
potato = 3
sendnn_exit(potato, *args, **kwargs)

functools.update_wrapper(__stagger_exit__, sendnn_exit)

Check failure on line 85 in vllm_spyre/v1/worker/spyre_worker.py

View workflow job for this annotation

GitHub Actions / type-check (3.11)

Argument 1 has incompatible type "int"; expected "nullcontext[Never]" [arg-type]
with warmup_context():
_inside_warmup_mode = True
yield
Expand Down
Loading