mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-02-07 21:26:21 -05:00
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:
7
.github/workflows/test.yml
vendored
7
.github/workflows/test.yml
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user