You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/debugging.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,11 +99,11 @@ Use `--debug.deterministic_warn_only` to only warn about (not stop running) kern
99
99
100
100
The following debug configs are available for AC.
101
101
102
-
`ac_preserve_rng_state` - if deterministic output compared to non-checkpointed passes is required, set to true. Results in stashing and restoring the RNG state during each checkpoint, may be slower.
102
+
`preserve_rng_state` - if deterministic output compared to non-checkpointed passes is required, set to true. Results in stashing and restoring the RNG state during each checkpoint, may be slower.
103
103
104
-
`ac_determinism_check` - A string specifying the determinism function
104
+
`determinism_check` - A string specifying the determinism function
105
105
106
-
`ac_debug` - capture ac debug information. Will be slower.
106
+
`debug` - capture ac debug information. Will be slower.
107
107
108
108
See https://docs.pytorch.org/docs/stable/checkpoint.html for details.
If deterministic output compared to non-checkpointed passes is required, set
629
+
to true. Results in stashing and restoring the RNG state during each checkpoint,
630
+
may be slower. See https://docs.pytorch.org/docs/stable/checkpoint.html
631
+
for details.
632
+
"""
633
+
634
+
determinism_check: str="default"
635
+
"""
636
+
A string specifying the determinism function. See
637
+
https://docs.pytorch.org/docs/stable/checkpoint.html for details.
638
+
"""
639
+
640
+
debug: bool=False
641
+
"""
642
+
Capture ac debug information. Will be slower. See
643
+
https://docs.pytorch.org/docs/stable/checkpoint.html for details.
644
+
"""
645
+
626
646
627
647
@dataclass
628
648
classCompile:
@@ -882,15 +902,6 @@ class Debug:
882
902
deterministic_warn_only: bool=False
883
903
"""Only warns about ops without deterministic implementations rather than erroring out """
884
904
885
-
ac_preserve_rng_state: bool=False
886
-
"""If deterministic output compared to non-checkpointed passes is required, set to true. Results in stashing and restoring the RNG state during each checkpoint, may be slower. See https://docs.pytorch.org/docs/stable/checkpoint.html for details."""
887
-
888
-
ac_determinism_check: str="default"
889
-
"""A string specifying the determinism function. See https://docs.pytorch.org/docs/stable/checkpoint.html for details."""
890
-
891
-
ac_debug: bool=False
892
-
""" Capture ac debug information. Will be slower. See https://docs.pytorch.org/docs/stable/checkpoint.html for details."""
893
-
894
905
moe_force_load_balance: bool=False
895
906
"""If True, we force each experts to get the same amount of tokens via round-robin. This option is for debugging usage only."""
0 commit comments