It seems like it works in Amaranth, and since is among the first few sources I read, adjusting it here might help other people to get it right from the start.
Or maybe it was intentional?
I generated logs for each benchtests.
git checkout 975f018
git diff --stat 7807bd6 | while IFS='/ ' read test _; do echo $test; (cd $test; python ./bench.py >commit_975f018.log); done
git checkout 7807bd6
git diff --stat 975f018 | while IFS='/ ' read test _; do echo $test; (cd $test; python ./bench.py >commit_7807bd6.log); done
I then compared the output from each commit and it reported nothing
git diff --stat 975f018 | grep '|' | while IFS='/ ' read test _; do diff -u $test/commit_*.log; done
Hi @josuah , thanks for the PR! I've been meaning to look into this. I also only found out about the Cat(a, b,...) syntax halfway through the tutorial.
It seems like it works in Amaranth, and since is among the first few sources I read, adjusting it here might help other people to get it right from the start.
Or maybe it was intentional?
I generated logs for each benchtests.
I then compared the output from each commit and it reported nothing