Add cupy support + CI #424
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Benchmark | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
benchmark: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -e {0} # -e to fail on error | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["3.10"] | |
os: [ubuntu-latest] | |
env: | |
OS: ${{ matrix.os }} | |
PYTHON: ${{ matrix.python }} | |
ASV_DIR: "./benchmarks" | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: git fetch origin main:main | |
if: ${{ github.ref_name != 'main' }} | |
# Errors on main branch | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: "pip" | |
cache-dependency-path: "**/pyproject.toml" | |
- name: Cache datasets | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache | |
key: benchmark-state-${{ hashFiles('benchmarks/**') }} | |
- name: Install dependencies | |
run: | | |
pip install asv | |
- name: Quick benchmark run | |
working-directory: ${{ env.ASV_DIR }} | |
run: | | |
asv machine --yes | |
asv run -qev --strict |