Skip to content

Commit

Permalink
!!!
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed May 29, 2024
1 parent 4d3becc commit df8d59c
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/cirun-bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,11 @@ jobs:
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt update
sudo apt-get install -y gfortran cmake ccache libtinfo5
sudo apt-get install -y gfortran cmake ccache libtinfo5 python3-pip
else
echo "::error::$RUNNER_OS not supported"
exit 1
fi
echo `which python3`
python3 -c'import sys; print(sys.version)'
sudo apt-get install python3-pip -y
python3 -mpip --version
- name: Compilation cache
uses: actions/cache@v3
Expand Down Expand Up @@ -119,7 +115,7 @@ jobs:
run: ccache -s

- name: Install benchmarking dependencies
run: pip install meson ninja numpy pytest pytest-benchmark --user
run: pip3 install meson ninja numpy pytest pytest-benchmark --user

- name: Build the wrapper
run: |
Expand All @@ -130,7 +126,7 @@ jobs:
#
# sanity check
cd build/openblas_wrap
python -c'import _flapack; print(dir(_flapack))'
python3 -c'import _flapack; print(dir(_flapack))'
- name: Run benchmarks
run: |
Expand Down

0 comments on commit df8d59c

Please sign in to comment.