Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0cc42a7
feat(dumper): add SGLANG_DUMPER_CLEANUP env var to auto-remove old dumps
fzyzcjy Feb 19, 2026
3726326
more
fzyzcjy Feb 19, 2026
1d85c3a
more
fzyzcjy Feb 19, 2026
bc0a29c
feat(dumper): add watchdog timeout for collective communication ops
fzyzcjy Feb 19, 2026
c2ec469
test(dumper): add tests for collective communication timeout watchdog
fzyzcjy Feb 19, 2026
c45a0d6
more
fzyzcjy Feb 19, 2026
ff36758
refactor(test): extract _capture_stdout context manager for stdout re…
fzyzcjy Feb 19, 2026
ef77c2d
refactor(test): use nonlocal instead of list, add debug prints for ca…
fzyzcjy Feb 19, 2026
0c8dd0c
fmt
fzyzcjy Feb 19, 2026
294b10b
fix(test): use correct kwarg cleanup_previous instead of needs_cleanup
fzyzcjy Feb 19, 2026
3c5b578
Merge branch 'ac8398/0' into ac8398/1
fzyzcjy Feb 19, 2026
3079303
refactor(dumper): split SGLANG_DUMPER_WRITE_FILE into OUTPUT_FILE and…
fzyzcjy Feb 19, 2026
73e98bc
refactor(test): merge output file and console tests into symmetric Te…
fzyzcjy Feb 19, 2026
279749a
remove redundant distributed test_write_disabled, covered by TestOutp…
fzyzcjy Feb 19, 2026
681c86e
feat(dumper): add capture_output() context manager for in-memory dump…
fzyzcjy Feb 19, 2026
e829bfe
test(dumper): verify capture_output respects filter
fzyzcjy Feb 19, 2026
ff729d1
refactor(dumper): extract _DumperConfig frozen dataclass
fzyzcjy Feb 19, 2026
a0a6f1c
Revert "refactor(dumper): extract _DumperConfig frozen dataclass"
fzyzcjy Feb 19, 2026
96493cb
feat(dumper): support KV filtering on name, extra_kwargs, and global_ctx
fzyzcjy Feb 20, 2026
bb4dfaf
style(dumper): collapse double-if filter check into single condition
fzyzcjy Feb 20, 2026
9002a4a
refactor(dumper): pre-compute user_kwargs at grad hook registration time
fzyzcjy Feb 20, 2026
6a742c9
rename(dumper): user_kwargs -> tags
fzyzcjy Feb 20, 2026
9e2592b
rename(dumper): _format_kwargs -> _format_tags
fzyzcjy Feb 20, 2026
8dc3443
fmt
fzyzcjy Feb 20, 2026
e7cf6c3
Merge branch 'main' into ac8398/3
fzyzcjy Feb 20, 2026
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
Prev Previous commit
Next Next commit
more
  • Loading branch information
fzyzcjy committed Feb 19, 2026
commit c45a0d63000b5ac230786d808e6b5fd95ded1c5d
6 changes: 2 additions & 4 deletions test/registered/debug_utils/test_dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,9 @@ def _test_collective_timeout_func(rank):
sys.stdout = captured

try:
if rank == 0:
dumper.on_forward_pass_start()
else:
if rank != 0:
time.sleep(6)
dumper.on_forward_pass_start()
dumper.on_forward_pass_start()
finally:
sys.stdout = old_stdout

Expand Down
Loading