more divmod cleanup [p] (#13358)

* more divmod cleanup [p]

* lil cleanups, faster
This commit is contained in:
George Hotz
2025-11-19 10:35:15 -08:00
committed by GitHub
parent bd88a72149
commit 6fdbd03104
2 changed files with 22 additions and 17 deletions

View File

@@ -38,7 +38,7 @@ def trunc_log(x):
# user config
# NOTE: process replay is slow so it's now disabled by default. add [pr] to enable it
#SKIP_PROCESS_REPLAY = (k:="[skip_process_replay]") in os.getenv("COMMIT_MESSAGE", "") or k in os.getenv("PR_TITLE", "")
SKIP_PROCESS_REPLAY = not ASSERT_DIFF
SKIP_PROCESS_REPLAY = not ASSERT_DIFF and not ((k:="[p]") in os.getenv("COMMIT_MESSAGE", "") or k in os.getenv("PR_TITLE", ""))
if REF == "master": SKIP_PROCESS_REPLAY = True
class ProcessReplayWarning(Warning): pass