From fdfc0015a7e5132f3c8a75fcb5be2dcc99374f98 Mon Sep 17 00:00:00 2001 From: qazal <77887910+Qazalin@users.noreply.github.com> Date: Fri, 19 Jul 2024 00:42:33 +0800 Subject: [PATCH] [run_process_replay] for opencl/openpilot (#5009) * lil reset script * find the prg * use lower_schedule_item * add process replay back * cleanups --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 139c3943f0..a5a04c1929 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -220,6 +220,11 @@ jobs: - if: ${{ matrix.task == 'onnx' }} name: Run handcode_opt run: PYTHONPATH=. MODEL=resnet GPU=1 DEBUG=1 BS=4 HALF=0 python3 examples/handcode_opt.py + - name: Run process replay tests + run: | + export PR_TITLE=$(jq -r .pull_request.title "$GITHUB_EVENT_PATH") + export COMMIT_MESSAGE=$(git show -s --format=%B ${{ github.event.pull_request.head.sha }}) + cp test/external/process_replay/process_replay.py ./process_replay.py && git fetch origin master && git -c advice.detachedHead=false checkout origin/master && PYTHONPATH=. python3 process_replay.py #testwebgpu: # name: WebGPU Tests