mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-04-29 03:00:14 -04:00
* assert process replay asserts * one ci job is fine * test: Revert "separate process replay main loop (#5734)" This reverts commit94d578396f. * mac sed needs that * Revert "test: Revert "separate process replay main loop (#5734)"" This reverts commite4ad7684d5. * disable process replay capture * save time * amd is tiny * send to /dev/null
13 lines
379 B
Bash
Executable File
13 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# should assert
|
|
sed -i 's/temp/temp1/g' ./tinygrad/codegen/lowerer.py
|
|
ASSERT_PROCESS_REPLAY=1 python3 test/external/process_replay/process_replay.py &> /dev/null
|
|
if [[ $? -eq 0 ]]; then
|
|
echo "PROCESS REPLAY IS WRONG."
|
|
exit 1
|
|
fi
|
|
# should NOT assert
|
|
git stash > /dev/null
|
|
ASSERT_PROCESS_REPLAY=1 python3 test/external/process_replay/process_replay.py &> /dev/null
|