mirror of
https://github.com/tinygrad/tinygrad.git
synced 2026-02-12 07:35:16 -05:00
* most of the work from the uops2 branch
* schedule
* realize
* kernel
* lowerer
* search
* green
* merge uops with ops
* Revert "merge uops with ops"
This reverts commit 1408a59f12.
* fix benchmark
* remove extra dedup
13 lines
416 B
Bash
Executable File
13 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# should assert
|
|
sed -i 's/temp/temp1/g' ./tinygrad/codegen/kernel.py
|
|
COMPARE_SCHEDULE=0 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
|
|
COMPARE_SCHEDULE=0 ASSERT_PROCESS_REPLAY=1 python3 test/external/process_replay/process_replay.py &> /dev/null
|