Skip to content

Commit

Permalink
Don't assume that CI has llvm-mca
Browse files Browse the repository at this point in the history
  • Loading branch information
hanno-becker committed Mar 20, 2024
1 parent d006fb3 commit 7b9b9ab
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tutorial/tutorial_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ python3 tutorial-3b.py >/dev/null
echo "* tutorial-4.py (Software pipelining)"
python3 tutorial-4.py >/dev/null

echo "* tutorial-5.py (Running SLOTHY with LLVM-MCA)"
python3 tutorial-5.py >/dev/null
if [ -x "$(command -v llvm-mca)" ]
then
echo "* tutorial-5.py (Running SLOTHY with LLVM-MCA)"
python3 tutorial-5.py >/dev/null
else
echo "* tutorial-5.py (Running SLOTHY with LLVM-MCA) SKIP"
fi

echo "* tutorial-6.py (Optimizing a full Neon NTT)"
python3 tutorial-6.py >/dev/null
Expand Down

0 comments on commit 7b9b9ab

Please sign in to comment.