limit pickled objects [run_process_replay] (#5154)

* limit pickled objects

* delete uop from the list

* debug metal

* need self.opts for TC

* dont need device

* [run_process_replay]

* minor
This commit is contained in:
qazal
2024-06-26 13:51:32 +03:00
committed by GitHub
parent ee4f080a14
commit 6ca7b13ed1
3 changed files with 12 additions and 13 deletions

View File

@@ -37,12 +37,11 @@ jobs:
COMMIT_MESSAGE=$(printf '%q' "$RAW_COMMIT_MESSAGE")
RAW_PR_TITLE="${{ github.event.pull_request.title }}"
PR_TITLE=$(printf '%q' "$RAW_PR_TITLE")
if { echo "$COMMIT_MESSAGE" | grep -q "run_process_replay" || \
[ "${{ github.event.inputs.run_process_replay }}" == "true" ] || \
echo "$PR_TITLE" | grep -q "run_process_replay"; } && [ "$GITHUB_REF_NAME" != "master" ]; then
if { echo "$COMMIT_MESSAGE" | grep -q "run_process_replay" || echo "$PR_TITLE" | grep -q "run_process_replay" || [ "${{ github.event.inputs.run_process_replay }}" = "true" ]; } && [ "$GITHUB_REF_NAME" != "master" ]; then
echo "RUN_PROCESS_REPLAY=1" >> $GITHUB_OUTPUT
echo "enabled process replay"
if echo "$COMMIT_MESSAGE" | grep -q "no_assert"; then
if { echo "$COMMIT_MESSAGE" | grep -q "no_assert" || echo "$PR_TITLE" | grep -q "no_assert"; }; then
echo "ASSERT_PROCESS_REPLAY=0" >> $GITHUB_OUTPUT
echo "running process replay in diff-only mode"
else